mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 21:45:23 +02:00
Family invites (#1397)
* 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
This commit is contained in:
parent
09b269273a
commit
793bd852a0
26 changed files with 502 additions and 45 deletions
8
config/locales/mailers/invitation_mailer/en.yml
Normal file
8
config/locales/mailers/invitation_mailer/en.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
en:
|
||||
invitation_mailer:
|
||||
invite_email:
|
||||
subject: "%{inviter} has invited you to join their household on Maybe!"
|
||||
greeting: "You've been invited!"
|
||||
body: "%{inviter} has invited you to join their household '%{family}' as a %{role}."
|
||||
accept_button: "Accept Invitation"
|
||||
expiry_notice: "This invitation will expire in %{days} days."
|
7
config/locales/views/invitation_mailer/en.yml
Normal file
7
config/locales/views/invitation_mailer/en.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
en:
|
||||
invitation_mailer:
|
||||
invite_email:
|
||||
greeting: "Welcome to Maybe!"
|
||||
body: "%{inviter} has invited you to join the %{family} family on Maybe!"
|
||||
accept_button: "Accept Invitation"
|
||||
expiry_notice: "This invitation will expire in %{days} days"
|
14
config/locales/views/invitations/en.yml
Normal file
14
config/locales/views/invitations/en.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
en:
|
||||
invitations:
|
||||
create:
|
||||
success: "Invitation sent successfully"
|
||||
failure: "Could not send invitation"
|
||||
new:
|
||||
title: Invite Someone
|
||||
subtitle: Send an invitation to join your family account on Maybe
|
||||
email_placeholder: Enter email address
|
||||
email_label: Email Address
|
||||
role_member: Member
|
||||
role_admin: Administrator
|
||||
role_label: Role
|
||||
submit: Send Invitation
|
|
@ -9,12 +9,15 @@ en:
|
|||
create: Continue
|
||||
registrations:
|
||||
create:
|
||||
failure: Invalid input, please try again.
|
||||
invalid_invite_code: Invalid invite code, please try again.
|
||||
success: You have signed up successfully.
|
||||
new:
|
||||
submit: Create account
|
||||
title: Create an account
|
||||
title: Create your account
|
||||
join_family_title: "Join %{family}"
|
||||
invitation_message: "%{inviter} has invited you to join as a %{role}"
|
||||
role_member: "member"
|
||||
role_admin: "administrator"
|
||||
welcome_body: To get started, you must sign up for a new account. You will
|
||||
then be able to configure additional settings within the app.
|
||||
welcome_title: Welcome to Self Hosted Maybe!
|
||||
|
|
|
@ -41,6 +41,7 @@ en:
|
|||
theme_title: Theme
|
||||
profiles:
|
||||
show:
|
||||
invite_member: "Add member"
|
||||
confirm_delete:
|
||||
body: Are you sure you want to permanently delete your account? This action
|
||||
is irreversible.
|
||||
|
@ -60,6 +61,8 @@ en:
|
|||
profile_subtitle: Customize how you appear on Maybe
|
||||
profile_title: Profile
|
||||
save: Save
|
||||
pending: Pending
|
||||
invitation_link: Invitation link
|
||||
user_avatar_field:
|
||||
accepted_formats: JPG or PNG. 5MB max.
|
||||
choose: Choose
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue