From e330c88411065aa93783a5d621ade33caa4c39f2 Mon Sep 17 00:00:00 2001 From: Otto Richter Date: Mon, 12 Aug 2024 20:04:00 +0200 Subject: [PATCH] fix(api): Correct descriptions for quota calls --- routers/api/v1/admin/quota_group.go | 8 ++++---- templates/swagger/v1_json.tmpl | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/routers/api/v1/admin/quota_group.go b/routers/api/v1/admin/quota_group.go index b75bdef54b..e20b361eb5 100644 --- a/routers/api/v1/admin/quota_group.go +++ b/routers/api/v1/admin/quota_group.go @@ -220,7 +220,7 @@ func RemoveUserFromQuotaGroup(ctx *context.APIContext) { // required: true // - name: username // in: path - // description: username of the user to add to the quota group + // description: username of the user to remove from the quota group // type: string // required: true // responses: @@ -255,12 +255,12 @@ func SetUserQuotaGroups(ctx *context.APIContext) { // parameters: // - name: username // in: path - // description: username of the user to add to the quota group + // description: username of the user to modify the quota groups from // type: string // required: true // - name: groups // in: body - // description: quota group to remove a user from + // description: list of groups that the user should be a member of // schema: // "$ref": "#/definitions/SetUserQuotaGroupsOptions" // required: true @@ -405,7 +405,7 @@ func RemoveRuleFromQuotaGroup(ctx *context.APIContext) { // parameters: // - name: quotagroup // in: path - // description: quota group to add a rule to + // description: quota group to remove a rule from // type: string // required: true // - name: quotarule diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 0ae58c450f..fa75fe5446 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -670,7 +670,7 @@ "parameters": [ { "type": "string", - "description": "quota group to add a rule to", + "description": "quota group to remove a rule from", "name": "quotagroup", "in": "path", "required": true @@ -800,7 +800,7 @@ }, { "type": "string", - "description": "username of the user to add to the quota group", + "description": "username of the user to remove from the quota group", "name": "username", "in": "path", "required": true @@ -1465,13 +1465,13 @@ "parameters": [ { "type": "string", - "description": "username of the user to add to the quota group", + "description": "username of the user to modify the quota groups from", "name": "username", "in": "path", "required": true }, { - "description": "quota group to remove a user from", + "description": "list of groups that the user should be a member of", "name": "groups", "in": "body", "required": true,