Welcome to mirror list, hosted at ThFree Co, Russian Federation.

01_admin.rb « development « fixtures « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f241f6fa4a782e0c0a73efff526bd36048d4600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.projects_limit = 100
    s.confirmed_at = DateTime.now
  end
end