(userId: string, org: string)
| 641 | |
| 642 | /** Whether `userId` is authorized for `org` right now. */ |
| 643 | const authorized = async (userId: string, org: string) => (await authorize(userId, org)) !== null; |
| 644 | |
| 645 | /** A request-scoped layer whose `deleteOrganizationCascade` fails, everything else live. */ |
| 646 | const servicesWithFailingPurge = (purges: string[]) => |
no test coverage detected