invites-fix2
All checks were successful
Deploy on push / deploy (push) Successful in 7s

This commit is contained in:
2025-06-30 23:37:21 +03:00
parent 5cfde98c22
commit 6c95b0575a
6 changed files with 348 additions and 96 deletions

View File

@@ -128,3 +128,12 @@ export const ADMIN_DELETE_INVITE_MUTATION = `
}
}
`
export const ADMIN_DELETE_INVITES_BATCH_MUTATION = `
mutation AdminDeleteInvitesBatch($invites: [AdminInviteIdInput!]!) {
adminDeleteInvitesBatch(invites: $invites) {
success
error
}
}
`