diff --git a/pkg/services/ssosettings/api/api.go b/pkg/services/ssosettings/api/api.go index a7f911ca470..b01a47b3a4b 100644 --- a/pkg/services/ssosettings/api/api.go +++ b/pkg/services/ssosettings/api/api.go @@ -153,6 +153,7 @@ func (api *Api) updateProviderSettings(c *contextmodel.ReqContext) response.Resp // 400: badRequestError // 401: unauthorisedError // 403: forbiddenError +// 404: notFoundError // 500: internalServerError func (api *Api) removeProviderSettings(c *contextmodel.ReqContext) response.Response { key, ok := web.Params(c.Req)[":key"] diff --git a/public/api-merged.json b/public/api-merged.json index 997789bc407..908a148e68d 100644 --- a/public/api-merged.json +++ b/public/api-merged.json @@ -11086,6 +11086,9 @@ "403": { "$ref": "#/responses/forbiddenError" }, + "404": { + "$ref": "#/responses/notFoundError" + }, "500": { "$ref": "#/responses/internalServerError" } diff --git a/public/openapi3.json b/public/openapi3.json index e6329c603bf..2cc81e64fc4 100644 --- a/public/openapi3.json +++ b/public/openapi3.json @@ -24317,6 +24317,9 @@ "403": { "$ref": "#/components/responses/forbiddenError" }, + "404": { + "$ref": "#/components/responses/notFoundError" + }, "500": { "$ref": "#/components/responses/internalServerError" }