From b09ffc92bc22a7a5557ee61fbf28669847dde645 Mon Sep 17 00:00:00 2001 From: Aaron Fosmire <54587293+Fozzywozzybear@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:18:11 -0400 Subject: [PATCH] remove update a source from api docs (#3722) --- docs/specs/openapi.json | 73 ----------------------------------------- 1 file changed, 73 deletions(-) diff --git a/docs/specs/openapi.json b/docs/specs/openapi.json index 041e16b1e7..e628d5c463 100644 --- a/docs/specs/openapi.json +++ b/docs/specs/openapi.json @@ -3845,79 +3845,6 @@ } } } - }, - "patch": { - "tags": [ - "Sources" - ], - "summary": "Update a source", - "operationId": "updateSource", - "parameters": [{ - "name": "source_id", - "in": "path", - "description": "ID of source to update", - "required": true, - "schema": { - "type": "integer", - "format": "int64", - "example": 1 - } - }], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SourceIn" - } - } - }, - "required": true - }, - "security": [{ - "basic_auth": [] - }], - "responses": { - "200": { - "description": "A Source object", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SourceOut" - } - } - } - }, - "424": { - "description": "Dependency not available", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DependencyError" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "500": { - "description": "Unexpected Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - } } }, "/sources/{source_id}/stats/": {