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

15 lines
250 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require './spec/support/sidekiq'
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,
confirmed_at: DateTime.now
)
print '.'
2014-09-02 18:07:02 +05:30
end