mirror of
https://github.com/penpot/penpot.git
synced 2025-05-28 13:06:13 +02:00
🎉 Add invite to team email.
This commit is contained in:
parent
8ea4ea23cc
commit
d4cb868503
5 changed files with 551 additions and 0 deletions
|
@ -74,3 +74,16 @@
|
|||
(def change-email
|
||||
"Password change confirmation email"
|
||||
(emails/build ::change-email default-context))
|
||||
|
||||
(s/def :internal.emails.invite-to-team/invited-by ::us/string)
|
||||
(s/def :internal.emails.invite-to-team/team ::us/string)
|
||||
(s/def :internal.emails.invite-to-team/token ::us/string)
|
||||
|
||||
(s/def ::invite-to-team
|
||||
(s/keys :keys [:internal.emails.invite-to-team/invited-by
|
||||
:internal.emails.invite-to-team/token
|
||||
:internal.emails.invite-to-team/team]))
|
||||
|
||||
(def invite-to-team
|
||||
"Teams member invitation email."
|
||||
(emails/build ::invite-to-team default-context))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue