(inv: Pick<InvitationWithGrants, 'expiresAt'>)
| 132 | } |
| 133 | |
| 134 | export function isInvitationExpired(inv: Pick<InvitationWithGrants, 'expiresAt'>): boolean { |
| 135 | return new Date() > new Date(inv.expiresAt) |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Flip any still-pending invitations for the given organization whose |
no outgoing calls
no test coverage detected