mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-13 05:40:38 +01:00
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import { OpenAPIRegistry } from "@asteasolutions/zod-to-openapi";
|
|
|
|
export const registry = new OpenAPIRegistry();
|
|
|
|
export enum OpenAPITags {
|
|
Site = "Site",
|
|
Org = "Organization",
|
|
Resource = "Resource",
|
|
Role = "Role",
|
|
User = "User",
|
|
Invitation = "Invitation",
|
|
Target = "Target",
|
|
Rule = "Rule",
|
|
AccessToken = "Access Token",
|
|
Idp = "Identity Provider",
|
|
Client = "Client",
|
|
ApiKey = "API Key"
|
|
}
|