# 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=productionNotes:
# 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# 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=productionNotes:
# 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=productionblock_auto_created_users: false
This task will disable 2FA for all users that have it enabled. This can be useful if GitSwarm's .secret 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