Commit b5593683af9c8d182c954e04fbde9934404c5058

Authored by Dmitriy Zaporozhets
1 parent 48ce80a6

Mars theme for generated admin account

db/fixtures/development/01_admin.rb
... ... @@ -8,5 +8,6 @@ User.seed(:id, [
8 8 password_confirmation: "5iveL!fe",
9 9 admin: true,
10 10 projects_limit: 100,
  11 + theme_id: Gitlab::Theme::MARS
11 12 }
12 13 ])
... ...
db/fixtures/production/001_admin.rb
... ... @@ -4,7 +4,9 @@ admin = User.create(
4 4 username: 'root',
5 5 password: "5iveL!fe",
6 6 password_confirmation: "5iveL!fe",
7   - password_expires_at: Time.now
  7 + password_expires_at: Time.now,
  8 + theme_id: Gitlab::Theme::MARS
  9 +
8 10 )
9 11  
10 12 admin.projects_limit = 10000
... ...