delete_account.md 1.74 KB
Newer Older
1 2
# Deleting a User Account

3 4 5
NOTE: **Note:**
Deleting a user will delete all projects in that user namespace.

6
- As a user, you can delete your own account by navigating to **Settings** > **Account** and selecting **Delete account**
7
- As an admin, you can delete a user account by navigating to the **Admin Area**, selecting the **Users** tab, selecting a user, and clicking on **Delete user**
8 9 10

## Associated Records

11 12 13 14
> Introduced for issues in [GitLab 9.0][ce-7393], and for merge requests, award
  emoji, notes, and abuse reports in [GitLab 9.1][ce-10467].
  Hard deletion from abuse reports and spam logs was introduced in
  [GitLab 9.1][ce-10273], and from the API in [GitLab 9.3][ce-11853].
15

16 17
When a user account is deleted, not all associated records are deleted with it.
Here's a list of things that will not be deleted:
18 19 20 21 22

- Issues that the user created
- Merge requests that the user created
- Notes that the user created
- Abuse reports that the user reported
denisroy's avatar
denisroy committed
23
- Award emoji that the user created
24

25 26
Instead of being deleted, these records will be moved to a system-wide
"Ghost User", whose sole purpose is to act as a container for such records.
27

28
When a user is deleted from an [abuse report](../../admin_area/abuse_reports.md) or spam log, these associated
29 30
records are not ghosted and will be removed, along with any groups the user
is a sole owner of. Administrators can also request this behaviour when
31 32
deleting users from the [API](../../../api/users.md#user-deletion) or the
admin area.
33 34

[ce-7393]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7393
35
[ce-10273]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10273
36
[ce-10467]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10467
37
[ce-11853]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11853