Add seeds to create user and admin
This commit is contained in:
parent
bda3f949b8
commit
d0ab24b9e3
1 changed files with 18 additions and 0 deletions
|
@ -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"
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue