debian-mirror-gitlab/db/fixtures/development/01_admin.rb

16 lines
300 B
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
require './spec/support/sidekiq_middleware'
2017-08-17 22:00:37 +05:30
2015-04-26 12:48:37 +05:30
Gitlab::Seeder.quiet do
2018-10-15 14:42:47 +05:30
User.create!(
name: 'Administrator',
email: 'admin@example.com',
username: 'root',
password: '5iveL!fe',
admin: true,
2020-11-24 15:15:51 +05:30
confirmed_at: DateTime.now,
password_expires_at: DateTime.now
2018-10-15 14:42:47 +05:30
)
print '.'
2014-09-02 18:07:02 +05:30
end