Merge lp:~cjwatson/launchpad/close-account-git-subscription into lp:launchpad

Proposed by Colin Watson
Status: Merged
Merged at revision: 18639
Proposed branch: lp:~cjwatson/launchpad/close-account-git-subscription
Merge into: lp:launchpad
Diff against target: 28 lines (+6/-5)
1 file modified
scripts/close-account.py (+6/-5)
To merge this branch: bzr merge lp:~cjwatson/launchpad/close-account-git-subscription
Reviewer Review Type Date Requested Status
William Grant code Approve
Review via email: mp+345237@code.launchpad.net

Commit message

Remove Git subscriptions in close-account.

To post a comment you must log in.
Revision history for this message
William Grant (wgrant) wrote :

There are probably much worse problems with that script, but indeed.

review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'scripts/close-account.py'
2--- scripts/close-account.py 2011-12-30 06:47:17 +0000
3+++ scripts/close-account.py 2018-05-08 14:29:22 +0000
4@@ -121,11 +121,11 @@
5
6 # Remove rows from tables in simple cases in the given order
7 removals = [
8- # Trash their email addresses. Unsociable privacy nut jobs who request
9- # account removal would be pissed if they reregistered with their old
10- # email address and this resurrected their deleted account, as the
11- # email address is probably the piece of data we store that they where
12- # most concerned with being removed from our systems.
13+ # Trash their email addresses. People who request complete account
14+ # removal would be unhappy if they reregistered with their old email
15+ # address and this resurrected their deleted account, as the email
16+ # address is probably the piece of data we store that they were most
17+ # concerned with being removed from our systems.
18 ('EmailAddress', 'person'),
19
20 # Trash their codes of conduct and GPG keys
21@@ -134,6 +134,7 @@
22
23 # Subscriptions
24 ('BranchSubscription', 'person'),
25+ ('GitSubscription', 'person'),
26 ('BugSubscription', 'person'),
27 ('QuestionSubscription', 'person'),
28 ('SpecificationSubscription', 'person'),