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: b4778a6ecbd98294ceb59998e015fdcc2393fc31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require './spec/support/sidekiq_middleware'

Gitlab::Seeder.quiet do
  User.create!(
    name: 'Administrator',
    email: 'admin@example.com',
    username: 'root',
    password: '5iveL!fe',
    admin: true,
    confirmed_at: DateTime.now,
    password_expires_at: DateTime.now
  )

  print '.'
end