Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-19 15:27:01 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-19 15:27:01 +0400
commitc86962e098f1fa6b5f5a616d29e3adac118ff436 (patch)
tree2802fa977e417e09e7d1100611e706ee9e26ea2c /db
parent84b6163b794c101370c1713a68cb24c6b586c2d5 (diff)
Change deafult admin email to example.com
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/01_admin.rb2
-rw-r--r--db/fixtures/production/001_admin.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/db/fixtures/development/01_admin.rb b/db/fixtures/development/01_admin.rb
index 42d18435340..176845fd8a8 100644
--- a/db/fixtures/development/01_admin.rb
+++ b/db/fixtures/development/01_admin.rb
@@ -2,7 +2,7 @@ User.seed(:id, [
{
id: 1,
name: "Administrator",
- email: "admin@local.host",
+ email: "admin@example.com",
username: 'root',
password: "5iveL!fe",
password_confirmation: "5iveL!fe",
diff --git a/db/fixtures/production/001_admin.rb b/db/fixtures/production/001_admin.rb
index a919fad7040..c00ba3c10ba 100644
--- a/db/fixtures/production/001_admin.rb
+++ b/db/fixtures/production/001_admin.rb
@@ -1,5 +1,5 @@
admin = User.create(
- email: "admin@local.host",
+ email: "admin@example.com",
name: "Administrator",
username: 'root',
password: "5iveL!fe",
@@ -18,7 +18,7 @@ if admin.valid?
puts %q[
Administrator account created:
-login.........admin@local.host
+login.........root
password......5iveL!fe
]
end