diff --git a/openapi.yaml b/openapi.yaml index 2879ae82..8b656e47 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -384,6 +384,23 @@ paths: application/json: schema: $ref: "#/components/schemas/Error" + /mapfixes/{MapfixID}/status/bypass-submit: + post: + summary: Role Reviewer changes status from ChangesRequested -> Submitted + operationId: actionMapfixBypassSubmit + tags: + - Mapfixes + parameters: + - $ref: '#/components/parameters/MapfixID' + responses: + "204": + description: Successful response + default: + description: General Error + content: + application/json: + schema: + $ref: "#/components/schemas/Error" /mapfixes/{MapfixID}/status/reset-submitting: post: summary: Role Submitter manually resets submitting softlock and changes status from Submitting -> UnderConstruction @@ -816,6 +833,23 @@ paths: application/json: schema: $ref: "#/components/schemas/Error" + /submissions/{SubmissionID}/status/bypass-submit: + post: + summary: Role Reviewer changes status from ChangesRequested -> Submitted + operationId: actionSubmissionBypassSubmit + tags: + - Submissions + parameters: + - $ref: '#/components/parameters/SubmissionID' + responses: + "204": + description: Successful response + default: + description: General Error + content: + application/json: + schema: + $ref: "#/components/schemas/Error" /submissions/{SubmissionID}/status/reset-submitting: post: summary: Role Submitter manually resets submitting softlock and changes status from Submitting -> UnderConstruction