debian-mirror-gitlab/db/fixtures/development/01_admin.rb
2018-03-27 19:54:05 +05:30

15 lines
315 B
Ruby

require './spec/support/sidekiq'
Gitlab::Seeder.quiet do
User.seed do |s|
s.id = 1
s.name = 'Administrator'
s.email = 'admin@example.com'
s.notification_email = 'admin@example.com'
s.username = 'root'
s.password = '5iveL!fe'
s.admin = true
s.confirmed_at = DateTime.now
end
end