Mars theme for generated admin account

This commit is contained in:
Dmitriy Zaporozhets 2013-08-26 13:06:41 +03:00
parent 48ce80a60c
commit b5593683af
2 changed files with 4 additions and 1 deletions

View File

@ -8,5 +8,6 @@ User.seed(:id, [
password_confirmation: "5iveL!fe", password_confirmation: "5iveL!fe",
admin: true, admin: true,
projects_limit: 100, projects_limit: 100,
theme_id: Gitlab::Theme::MARS
} }
]) ])

View File

@ -4,7 +4,9 @@ admin = User.create(
username: 'root', username: 'root',
password: "5iveL!fe", password: "5iveL!fe",
password_confirmation: "5iveL!fe", password_confirmation: "5iveL!fe",
password_expires_at: Time.now password_expires_at: Time.now,
theme_id: Gitlab::Theme::MARS
) )
admin.projects_limit = 10000 admin.projects_limit = 10000