diff --git a/server/api/root.ts b/server/api/root.ts index fd84da2f..3abbfbf2 100644 --- a/server/api/root.ts +++ b/server/api/root.ts @@ -65,12 +65,29 @@ export const openApiDocument = generateOpenApiDocument(appRouter, { version: "1.0.0", baseUrl: "http://localhost:3000/api/trpc", docsUrl: "http://localhost:3000/api/trpc/settings.getOpenApiDocument", - securitySchemes: { - bearerAuth: { - type: "http", - scheme: "bearer", - bearerFormat: "JWT", - }, - }, - description: "Dokploy API", + tags: [ + "admin", + "docker", + "compose", + "registry", + "cluster", + "user", + "domain", + "destination", + "backup", + "deployment", + "mounts", + "certificates", + "settings", + "security", + "redirects", + "port", + "project", + "application", + "mysql", + "postgres", + "redis", + "mongo", + "mariadb", + ], });