mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 23:04:49 +00:00
* Initial impersonation * Impersonation audit * Keep super admin separate * Remove vscode settings * Comment cleanup * Comment out impersonation fixtures for now * Remove unused controlelr * Add impersonation testing (#1326) * Add impersonation testing * Remove unused method * Update schema.rb * Update brakeman --------- Co-authored-by: Zach Gollwitzer <zach@maybe.co>
30 lines
680 B
YAML
30 lines
680 B
YAML
empty:
|
|
family: empty
|
|
first_name: User
|
|
last_name: One
|
|
email: user1@email.com
|
|
password_digest: <%= BCrypt::Password.create('password') %>
|
|
|
|
maybe_support_staff:
|
|
family: empty
|
|
first_name: Support
|
|
last_name: Admin
|
|
email: support@maybe.co
|
|
password_digest: <%= BCrypt::Password.create('password') %>
|
|
role: super_admin
|
|
|
|
family_admin:
|
|
family: dylan_family
|
|
first_name: Bob
|
|
last_name: Dylan
|
|
email: bob@bobdylan.com
|
|
password_digest: <%= BCrypt::Password.create('password') %>
|
|
role: admin
|
|
|
|
family_member:
|
|
family: dylan_family
|
|
first_name: Jakob
|
|
last_name: Dylan
|
|
email: jakobdylan@yahoo.com
|
|
password_digest: <%= BCrypt::Password.create('password') %>
|