Moderate users (administration)

Tier: Free, Premium, Ultimate Offering: Self-managed

This is the administration documentation. For information about moderating users at the group level, see the group-level documentation.

GitLab administrators can moderate user access by approving, blocking, banning, or deactivating users.

Users pending approval

A user in pending approval state requires action by an administrator. A user sign up can be in a pending approval state because an administrator has enabled any of the following options:

When a user registers for an account while this setting is enabled:

  • The user is placed in a Pending approval state.
  • The user sees a message telling them their account is awaiting approval by an administrator.

A user pending approval:

  • Is functionally identical to a blocked user.
  • Cannot sign in.
  • Cannot access Git repositories or the GitLab API.
  • Does not receive any notifications from GitLab.
  • Does not consume a seat.

An administrator must approve their sign up to allow them to sign in.

View user sign ups pending approval

To view user sign ups pending approval:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Pending approval tab.

Approve or reject a user sign up

A user sign up pending approval can be approved or rejected from the Admin Area.

To approve or reject a user sign up:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Pending approval tab.
  4. For the user sign up you want to approve or reject, select the vertical ellipsis ( ), then Approve or Reject.

Approving a user:

  • Activates their account.
  • Changes the user’s state to active.
  • Consumes a subscription seat.

Rejecting a user:

  • Prevents the user from signing in or accessing instance information.
  • Deletes the user.

Block and unblock users

GitLab administrators can block and unblock users. You should block a user when you don’t want them to access the instance, but you want to retain their data.

A blocked user:

  • Cannot sign in or access any repositories. The blocked user’s data remains in those repositories.
  • Cannot use slash commands. For more information, see slash commands.
  • Does not occupy a seat. For more information, see billable users.

Block a user

Prerequisites:

  • You must be an administrator for the instance.

You can block a user’s access to the instance.

To block a user:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. For the user you want to block, select the vertical ellipsis ( ), then Block.

The user receives an email notification that their account has been blocked. After this email, they no longer receive notifications.

To report abuse from other users, see report abuse. For more information on abuse reports in the Admin Area, see resolving abuse reports.

Unblock a user

A blocked user can be unblocked from the Admin Area. To do this:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Blocked tab.
  4. For the user you want to unblock, select the vertical ellipsis ( ), then Unblock.

The user’s state is set to active and they consume a seat.

note
Users can also be unblocked using the GitLab API.

The unblock option may be unavailable for LDAP users. To enable the unblock option, the LDAP identity first needs to be deleted:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Blocked tab.
  4. Select a user.
  5. Select the Identities tab.
  6. Find the LDAP provider and select Delete.

Activate and deactivate users

GitLab administrators can deactivate and activate users. You should deactivate a user if they have no recent activity, and you don’t want them to occupy a seat on the instance.

A deactivated user:

  • Can sign in to GitLab.
    • If a deactivated user signs in, they are automatically activated.
  • Cannot access repositories or the API.
  • Cannot use slash commands. For more information, see slash commands.
  • Does not occupy a seat. For more information, see billable users.

When you deactivate a user, their projects, groups, and history remain.

Deactivate a user

History

Prerequisites:

  • The user has had no activity in the last 90 days.

To deactivate a user:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. For the user you want to deactivate, select the vertical ellipsis ( ) and then Deactivate.
  4. On the dialog, select Deactivate.

The user receives an email notification that their account has been deactivated. After this email, they no longer receive notifications. For more information, see user deactivation emails.

To deactivate users with the GitLab API, see deactivate user. For information about permanent user restrictions, see block and unblock users.

Automatically deactivate dormant users

History
  • Introduced in GitLab 14.0.
  • Exclusion of GitLab generate bots introduced in GitLab 14.5
  • Customizable time period introduced in GitLab 15.4
  • The lower limit for inactive period set to 90 days introduced in GitLab 15.5

Administrators can enable automatic deactivation of users who either:

  • Were created more than a week ago and have not signed in.
  • Have no activity for a specified period of time (default and minimum is 90 days).

To do this:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Settings > General.
  3. Expand the Account and limit section.
  4. Under Dormant users, check Deactivate dormant users after a period of inactivity.
  5. Under Days of inactivity before deactivation, enter the number of days before deactivation. Minimum value is 90 days.
  6. Select Save changes.

When this feature is enabled, GitLab runs a job once a day to deactivate the dormant users.

A maximum of 100,000 users can be deactivated per day.

note
GitLab generated bots are excluded from the automatic deactivation of dormant users.

Automatically delete unconfirmed users

Tier: Premium, Ultimate Offering: Self-managed
History

Prerequisites:

  • You must be an administrator.

You can enable automatic deletion of users who both:

  • Never confirmed their email address.
  • Signed up for GitLab more than a specified number of days in the past.

You can configure these settings using either the Settings API or in a Rails console:

 Gitlab::CurrentSettings.update(delete_unconfirmed_users: true)
 Gitlab::CurrentSettings.update(unconfirmed_users_delete_after_days: 365)

When the delete_unconfirmed_users setting is enabled, GitLab runs a job once an hour to delete the unconfirmed users. The job only deletes users who signed up more than unconfirmed_users_delete_after_days days in the past.

This job only runs when the email_confirmation_setting is set to soft or hard.

A maximum of 240,000 users can be deleted per day.

Activate a user

History

A deactivated user can be activated from the Admin Area.

To do this:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Deactivated tab.
  4. For the user you want to activate, select the vertical ellipsis ( ), then Activate.

The user’s state is set to active and they consume a seat.

note
A deactivated user can also activate their account themselves by logging back in via the UI. Users can also be activated using the GitLab API.

Ban and unban users

History
  • Introduced in GitLab 14.2 with a flag named ban_user_feature_flag. Disabled by default.
  • Ban and unban users generally available in GitLab 14.8. Feature flag ban_user_feature_flag removed.
  • Hiding merge requests of banned users introduced in GitLab 15.8 with a flag named hide_merge_requests_from_banned_users. Disabled by default.
  • Hiding comments of banned users introduced in GitLab 15.11 with a flag named hidden_notes. Disabled by default.
  • Hiding projects of banned users introduced in GitLab 16.2 with a flag named hide_projects_of_banned_users. Disabled by default.

GitLab administrators can ban and unban users. You should ban a user when you want to block them and hide their activity from the instance.

A banned user:

  • Is blocked from the instance. The banned user’s projects, issues, merge requests, and comments are hidden.
  • Does not occupy a seat.

Ban a user

To block a user and hide their contributions, administrators can ban the user.

Users can be banned using the Admin Area. To do this:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. For the user you want to ban, select the vertical ellipsis ( ), then Ban user.

Unban a user

A banned user can be unbanned using the Admin Area. To do this:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Banned tab.
  4. For the user you want to unban, select the vertical ellipsis ( ), then Unban user.

The user’s state is set to active and they consume a seat.

Delete a user

Use the Admin Area to delete users.

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. For the user you want to delete, select the vertical ellipsis ( ), then Delete user.
  4. Type the username.
  5. Select Delete user.
note
You can only delete a user if there are inherited or direct owners of a group. You cannot delete a user if they are the only group owner.

You can also delete a user and their contributions, such as merge requests, issues, and groups of which they are the only group owner.

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. For the user you want to delete, select the vertical ellipsis ( ), then Delete user and contributions.
  4. Type the username.
  5. Select Delete user and contributions.
note
Before 15.1, additionally groups of which deleted user were the only owner among direct members were deleted.

Trust and untrust users

History

You can trust and untrust users from the Admin Area.

By default, a user is not trusted and is blocked from creating issues, notes, and snippets considered to be spam. When you trust a user, they can create issues, notes, and snippets without being blocked.

Prerequisites:

  • You must be an administrator.
Trust a user
  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select a user.
  4. From the User administration dropdown list, select Trust user.
  5. On the confirmation dialog, select Trust user.

The user is trusted.

Untrust a user
  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Overview > Users.
  3. Select the Trusted tab.
  4. Select a user.
  5. From the User administration dropdown list, select Untrust user.
  6. On the confirmation dialog, select Untrust user.

The user is untrusted.

Troubleshooting

When moderating users, you may need to perform bulk actions on them based on certain conditions. The following rails console scripts show some examples of this. You may start a rails console session and use scripts similar to the following:

Deactivate users that have no recent activity

Administrators can deactivate users that have no recent activity.

caution
Commands that change data can cause damage if not run correctly or under the right conditions. Always run commands in a test environment first and have a backup instance ready to restore.
days_inactive = 90
inactive_users = User.active.where("last_activity_on <= ?", days_inactive.days.ago)

inactive_users.each do |user|
    puts "user '#{user.username}': #{user.last_activity_on}"
    user.deactivate!
end

Block users that have no recent activity

Administrators can block users that have no recent activity.

caution
Commands that change data can cause damage if not run correctly or under the right conditions. Always run commands in a test environment first and have a backup instance ready to restore.
days_inactive = 90
inactive_users = User.active.where("last_activity_on <= ?", days_inactive.days.ago)

inactive_users.each do |user|
    puts "user '#{user.username}': #{user.last_activity_on}"
    user.block!
end

Block or delete users that have no projects or groups

Administrators can block or delete users that have no projects or groups.

caution
Commands that change data can cause damage if not run correctly or under the right conditions. Always run commands in a test environment first and have a backup instance ready to restore.
users = User.where('id NOT IN (select distinct(user_id) from project_authorizations)')

# How many users are removed?
users.count

# If that count looks sane:

# You can either block the users:
users.each { |user|  user.blocked? ? nil  : user.block! }

# Or you can delete them:
  # need 'current user' (your user) for auditing purposes
current_user = User.find_by(username: '<your username>')

users.each do |user|
  DeleteUserWorker.perform_async(current_user.id, user.id)
end