summaryrefslogtreecommitdiff
path: root/db/fixtures/development/01_admin.rb
blob: dfb50c195c139c3455255d1f93396c829064c58f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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