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: 3e76d76e8383b7b5af9f5434531dab0e4956df26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
User.seed(:id, [
  {
    id: 1,
    name: "Administrator",
    email: "admin@local.host",
    username: 'root',
    password: "5iveL!fe",
    password_confirmation: "5iveL!fe",
    admin: true,
    projects_limit: 100,
    theme_id: Gitlab::Theme::MARS
  }
])

User.find(1).confirm!