Commit 0b18ea13 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] bug invitation

parent 0a5dc16e
Pipeline #1340 failed with stage
......@@ -57,10 +57,10 @@ emailWith server model =
email_to :: MailModel -> (EmailAddress, Name)
email_to (Invitation user) = email_to' user
email_to (PassUpdate user) = email_to' user
email_to (MailInfo n m) = (m, n)
email_to (MailInfo u m) = (m, u)
email_to' :: NewUser GargPassword -> (EmailAddress, Name)
email_to' (NewUser u m _) = (u,m)
email_to' (NewUser u m _) = (m,u)
------------------------------------------------------------------------
bodyWith :: ServerAdress -> MailModel -> [Text]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment