From c4a0914a44003c384d0ac692d6ac588cb6264a88 Mon Sep 17 00:00:00 2001 From: Eric Newcomer Date: Thu, 18 Jan 2024 16:39:38 +0000 Subject: [PATCH] Add ticket export notification --- src/list/NotificationList.ts | 3 +++ src/vectoricon/index.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/src/list/NotificationList.ts b/src/list/NotificationList.ts index 7b04fed5..5069ebf6 100644 --- a/src/list/NotificationList.ts +++ b/src/list/NotificationList.ts @@ -95,6 +95,9 @@ export class NotificationList extends TembaList { } else if (notification.export.type === 'results') { icon = Icon.results_export; body = 'Exported flow results'; + } else if (notification.export.type === 'ticket') { + icon = Icon.tickets_export; + body = 'Exported tickets'; } } else if (notification.type === 'tickets:activity') { icon = Icon.tickets; diff --git a/src/vectoricon/index.ts b/src/vectoricon/index.ts index 9b14ff49..4a509e63 100644 --- a/src/vectoricon/index.ts +++ b/src/vectoricon/index.ts @@ -176,6 +176,7 @@ export enum Icon { tickets_closed = 'check', tickets_mine = 'coffee', tickets_open = 'inbox-01', + tickets_export = 'download-cloud-01', tickets_unassigned = 'inbox-01', topic = 'message-text-circle-02', two_factor_enabled = 'shield-02',