Add seeds to create user and admin

This commit is contained in:
João Gilberto Balsini Moura 2020-09-13 06:54:08 -03:00
parent bda3f949b8
commit d0ab24b9e3
1 changed files with 18 additions and 0 deletions

View File

@ -9,3 +9,21 @@
#
# We recommend using the bang functions (`insert!`, `update!`
# and so on) as they will fail if something goes wrong.
RealEstate.Accounts.register_admin(%{
email: "admin@company.com",
password: "123456789abc",
password_confirmation: "123456789abc"
})
RealEstate.Accounts.register_user(%{
email: "user1@company.com",
password: "123456789abc",
password_confirmation: "123456789abc"
})
RealEstate.Accounts.register_user(%{
email: "user2@company.com",
password: "123456789abc",
password_confirmation: "123456789abc"
})