From 6781fbd71223524a795e37fb1aff4883ede12dde Mon Sep 17 00:00:00 2001 From: cgoodwin90 Date: Wed, 13 Dec 2023 17:52:20 +1100 Subject: [PATCH] Exposes organization on notifications --- services/api/src/typeDefs.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/api/src/typeDefs.js b/services/api/src/typeDefs.js index b215059c62..12f577e019 100644 --- a/services/api/src/typeDefs.js +++ b/services/api/src/typeDefs.js @@ -566,6 +566,7 @@ const typeDefs = gql` webhook: String contentType: String notificationSeverityThreshold: ProblemSeverityRating + organization: Int } type NotificationRocketChat { @@ -575,6 +576,7 @@ const typeDefs = gql` channel: String contentType: String notificationSeverityThreshold: ProblemSeverityRating + organization: Int } type NotificationSlack { @@ -584,6 +586,7 @@ const typeDefs = gql` channel: String contentType: String notificationSeverityThreshold: ProblemSeverityRating + organization: Int } type NotificationEmail { @@ -592,6 +595,7 @@ const typeDefs = gql` emailAddress: String contentType: String notificationSeverityThreshold: ProblemSeverityRating + organization: Int } type NotificationWebhook { @@ -600,6 +604,7 @@ const typeDefs = gql` webhook: String contentType: String notificationSeverityThreshold: ProblemSeverityRating + organization: Int } type UnassignedNotification {