Commit f4733b00 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Confirm seed users

parent 9f9be175
...@@ -11,3 +11,5 @@ User.seed(:id, [ ...@@ -11,3 +11,5 @@ User.seed(:id, [
theme_id: Gitlab::Theme::MARS theme_id: Gitlab::Theme::MARS
} }
]) ])
User.find(1).confirm!
...@@ -12,6 +12,7 @@ admin = User.create( ...@@ -12,6 +12,7 @@ admin = User.create(
admin.projects_limit = 10000 admin.projects_limit = 10000
admin.admin = true admin.admin = true
admin.save! admin.save!
admin.confirm!
if admin.valid? if admin.valid?
puts %q[ puts %q[
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment