1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-08 06:55:21 +02:00
Maybe/test/fixtures/users.yml
Josh Pigford 41873de11d
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions
Allow users to update their email address (#1745)
* Change email address

* Email confirmation

* Email change test

* Lint

* Schema reset

* Set test email sender

* Select specific user fixture

* Refactor/cleanup

* Remove unused email_confirmation_token

* Current user would never be true

* Fix translation test failures
2025-01-31 11:29:49 -06:00

42 lines
No EOL
1 KiB
YAML

empty:
family: empty
first_name: User
last_name: One
email: user1@email.com
password_digest: <%= BCrypt::Password.create('password') %>
onboarded_at: <%= 3.days.ago %>
maybe_support_staff:
family: empty
first_name: Support
last_name: Admin
email: support@maybefinance.com
password_digest: <%= BCrypt::Password.create('password') %>
role: super_admin
onboarded_at: <%= 3.days.ago %>
family_admin:
family: dylan_family
first_name: Bob
last_name: Dylan
email: bob@bobdylan.com
password_digest: <%= BCrypt::Password.create('password') %>
role: admin
onboarded_at: <%= 3.days.ago %>
family_member:
family: dylan_family
first_name: Jakob
last_name: Dylan
email: jakobdylan@yahoo.com
password_digest: <%= BCrypt::Password.create('password') %>
onboarded_at: <%= 3.days.ago %>
new_email:
family: empty
first_name: Test
last_name: User
email: user@example.com
unconfirmed_email: new@example.com
password_digest: <%= BCrypt::Password.create('password123') %>
onboarded_at: <%= Time.current %>