From e7025b2c27a9b227b8bc2faec24508ba4b537072 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Fri, 21 Jun 2024 18:10:03 +0800 Subject: [PATCH] chore: add dev feature tag to openapi files --- .../organization/application/index.openapi.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/core/src/routes/organization/application/index.openapi.json b/packages/core/src/routes/organization/application/index.openapi.json index 23bebb126cf6..504ca5768c14 100644 --- a/packages/core/src/routes/organization/application/index.openapi.json +++ b/packages/core/src/routes/organization/application/index.openapi.json @@ -7,6 +7,9 @@ ], "paths": { "/api/organizations/{id}/applications": { + "tags": [ + "Dev feature" + ], "get": { "summary": "Get organization applications", "description": "Get applications associated with the organization.", @@ -68,6 +71,9 @@ } }, "/api/organizations/{id}/applications/{applicationId}": { + "tags": [ + "Dev feature" + ], "delete": { "summary": "Remove organization application", "description": "Remove an application from the organization.", @@ -79,6 +85,9 @@ } }, "/api/organizations/{id}/applications/{applicationId}/roles": { + "tags": [ + "Dev feature" + ], "get": { "summary": "Get organization application roles", "description": "Get roles associated with the application in the organization.", @@ -140,6 +149,9 @@ } }, "/api/organizations/{id}/applications/{applicationId}/roles/{organizationRoleId}": { + "tags": [ + "Dev feature" + ], "delete": { "summary": "Remove organization application role", "description": "Remove a role from the application in the organization.",