From ab80b8959b9d8f8d3f8bad4380e452e17c2a7973 Mon Sep 17 00:00:00 2001 From: Artem Dzhereleiko Date: Fri, 18 Aug 2023 14:47:28 +0300 Subject: [PATCH] UI: Remove Miscosoft teams from Notification settings --- .../notification/settings/notification-settings.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts b/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts index c28e030eec..aada799885 100644 --- a/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts +++ b/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts @@ -67,7 +67,8 @@ export class NotificationSettingsComponent extends PageComponent implements OnIn private getNotificationDeliveryMethods(): NotificationDeliveryMethod[] { const deliveryMethods = new Set([ - NotificationDeliveryMethod.SLACK + NotificationDeliveryMethod.SLACK, + NotificationDeliveryMethod.MICROSOFT_TEAMS ]); return Object.values(NotificationDeliveryMethod).filter(type => !deliveryMethods.has(type)); }