From 00a2c26e0dcc8ab40d6b5fefbec48218cfaf9d67 Mon Sep 17 00:00:00 2001 From: Luna D Date: Thu, 30 Sep 2021 20:52:07 +0200 Subject: [PATCH] password needs to be longer --- priv/repo/seeds.json | 2 +- priv/repo/seeds_development.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/priv/repo/seeds.json b/priv/repo/seeds.json index 6d5e9b05..80c945ec 100644 --- a/priv/repo/seeds.json +++ b/priv/repo/seeds.json @@ -63,7 +63,7 @@ "users": [{ "name": "Administrator", "email": "admin@example.com", - "password": "philomena", + "password": "philomena123", "role": "admin" }], "rating_tags": [ diff --git a/priv/repo/seeds_development.json b/priv/repo/seeds_development.json index a99bac11..36311e3b 100644 --- a/priv/repo/seeds_development.json +++ b/priv/repo/seeds_development.json @@ -2,19 +2,19 @@ "users": [{ "name": "Hot Pocket Consumer", "email": "moderator@example.com", - "password": "philomena", + "password": "philomena123", "role": "moderator" }, { "name": "Hoping For a Promotion", "email": "assistant@example.com", - "password": "philomena", + "password": "philomena123", "role": "assistant" }, { "name": "Pleb", "email": "user@example.com", - "password": "philomena", + "password": "philomena123", "role": "user" } ],