GitSwarm-EE 2017.1-1 Documentation


User management

Add user as a developer to all projects

# package installations
sudo gitswarm-rake gitswarm:import:user_to_projects[username@domain.tld]

# source installation
bundle exec rake gitswarm:import:user_to_projects[username@domain.tld] RAILS_ENV=production

Add all users to all projects

Notes:

# package installations
sudo gitswarm-rake gitswarm:import:all_users_to_all_projects

# source installation
bundle exec rake gitswarm:import:all_users_to_all_projects RAILS_ENV=production

Add user as a developer to all groups

# package installations
sudo gitswarm-rake gitswarm:import:user_to_groups[username@domain.tld]

# source installation
bundle exec rake gitswarm:import:user_to_groups[username@domain.tld] RAILS_ENV=production

Add all users to all groups

Notes:

# package installations
sudo gitswarm-rake gitswarm:import:all_users_to_all_groups

# source installation
bundle exec rake gitswarm:import:all_users_to_all_groups RAILS_ENV=production

Maintain tight control over the number of active users on your GitLab installation

block_auto_created_users: false

Disable Two-factor Authentication (2FA) for all users

This task will disable 2FA for all users that have it enabled. This can be useful if GitSwarm's config/secrets.yml file has been lost and users are unable to login, for example.

# package installations
sudo gitswarm-rake gitswarm:two_factor:disable_for_all_users

# source installation
bundle exec rake gitswarm:two_factor:disable_for_all_users RAILS_ENV=production

Clear authentication tokens for all users. Important! Data loss!

Clear authentication tokens for all users in the GitSwarm database. This task is useful if your users' authentication tokens might have been exposed in any way. All the existing tokens will become invalid, and new tokens are automatically generated upon sign-in or user modification.

# package installations
sudo gitswarm-rake gitswarm:users:clear_all_authentication_tokens

# source installation
bundle exec rake gitswarm:users:clear_all_authentication_tokens RAILS_ENV=production