From 90fdc794274ff424f129a95df07e731671a71672 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 29 Apr 2024 20:31:03 +0100 Subject: [PATCH] Added operation IDs Signed-off-by: Matthew --- paths/messaging/contact.yaml | 1 + paths/messaging/health.yaml | 1 + paths/openapi/health.yaml | 1 + paths/static/health.yaml | 5 +++-- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/paths/messaging/contact.yaml b/paths/messaging/contact.yaml index cd235de..ad77206 100644 --- a/paths/messaging/contact.yaml +++ b/paths/messaging/contact.yaml @@ -4,6 +4,7 @@ post: description: Send a message to Sidings Media summary: Send contact form message + operationId: sendContactMessage tags: - messaging requestBody: diff --git a/paths/messaging/health.yaml b/paths/messaging/health.yaml index 34035e6..29565ad 100644 --- a/paths/messaging/health.yaml +++ b/paths/messaging/health.yaml @@ -4,6 +4,7 @@ get: description: Messaging service health check summary: Health check + operationId: messagingHealth tags: - messaging responses: diff --git a/paths/openapi/health.yaml b/paths/openapi/health.yaml index bbefef6..f8577cb 100644 --- a/paths/openapi/health.yaml +++ b/paths/openapi/health.yaml @@ -4,6 +4,7 @@ get: description: Static service health check summary: Health check + operationId: openapiHealth tags: - static responses: diff --git a/paths/static/health.yaml b/paths/static/health.yaml index 1c02103..b49591a 100644 --- a/paths/static/health.yaml +++ b/paths/static/health.yaml @@ -2,10 +2,11 @@ # SPDX-License-Identifier: MIT get: - description: OpenAPI service health check + description: Static service health check summary: Health check + operationId: staticHealth tags: - - openapi + - static responses: '200': $ref: ../../components/responses/HealthCheckOK.yaml