mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 23:59:40 +02:00
* Initial pass at household invites * Invitee setup * Clean up add member form * Lint and other tweaks * Security cleanup * Lint * i18n fixes * More i18n cleanup * Show pending invites * Don't use turbo on the form * Improved email design * Basic tests * Lint * Update onboardings_controller.rb * Registration + invite cleanup * Lint * Update brakeman.ignore * Update brakeman.ignore * Self host invite links * Test tweaks * Address missing param error
19 lines
461 B
YAML
19 lines
461 B
YAML
one:
|
|
email: "test@example.com"
|
|
token: "valid-token-123"
|
|
role: "member"
|
|
inviter: family_admin
|
|
family: dylan_family
|
|
created_at: <%= Time.current %>
|
|
updated_at: <%= Time.current %>
|
|
expires_at: <%= 3.days.from_now %>
|
|
|
|
two:
|
|
email: "another@example.com"
|
|
token: "valid-token-456"
|
|
role: "admin"
|
|
inviter: family_admin
|
|
family: dylan_family
|
|
created_at: <%= Time.current %>
|
|
updated_at: <%= Time.current %>
|
|
expires_at: <%= 3.days.from_now %>
|