feat: add links to cancel anonymous participations in emails

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2023-12-01 09:52:28 +01:00
parent b315e1d7ff
commit 9e6b232a78
12 changed files with 244 additions and 24 deletions

View File

@@ -322,9 +322,14 @@ export const JOIN_EVENT = gql`
export const LEAVE_EVENT = gql`
mutation LeaveEvent($eventId: ID!, $actorId: ID!, $token: String) {
leaveEvent(eventId: $eventId, actorId: $actorId, token: $token) {
id
actor {
id
}
event {
id
uuid
}
}
}
`;