From 4b56c8d70bababf8ce6d0a80b955ab724dda0ae9 Mon Sep 17 00:00:00 2001 From: Jake Rosenberg Date: Mon, 10 Jul 2023 10:03:08 -0500 Subject: [PATCH] update queue selection for tickets (#262) Co-authored-by: Jake Rosenberg --- apps/tup-cms/src/apps/portal/apps.py | 4 +++- .../src/tickets/TicketCreateModal/TicketCreateForm.tsx | 2 ++ libs/tup-components/src/tickets/index.ts | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/tup-cms/src/apps/portal/apps.py b/apps/tup-cms/src/apps/portal/apps.py index 9d9bff6fe..f10ea1175 100644 --- a/apps/tup-cms/src/apps/portal/apps.py +++ b/apps/tup-cms/src/apps/portal/apps.py @@ -13,7 +13,9 @@ QUEUE_MAP = { - "Allocations": "Accounting", + "Allocations": "Allocations", + "Login Issues": "Accounts", + "Multi-factor Authentication": "MFA", "Data Analytics or Storage Resources": "Data Intensive Computing", "Login/Authentication Issue": "Accounting", "Running Jobs or Using TACC Resources": "High Performance Computing", diff --git a/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx b/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx index 9f6e3826c..0cfbb7f24 100644 --- a/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx +++ b/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx @@ -97,6 +97,8 @@ export const TicketCreateForm: React.FC = () => { + + diff --git a/libs/tup-components/src/tickets/index.ts b/libs/tup-components/src/tickets/index.ts index 44abab074..d0c7a05f4 100644 --- a/libs/tup-components/src/tickets/index.ts +++ b/libs/tup-components/src/tickets/index.ts @@ -4,7 +4,9 @@ export { default as Tickets } from './Tickets'; export { default as TicketModal } from './TicketDetailModal'; export const QUEUE_MAP = { - Allocations: 'Accounting', + Allocations: 'Allocations', + 'Login Issues': 'Accounts', + 'Multi-factor Authentication': 'MFA', 'Data Analytics or Storage Resources': 'Data Intensive Computing', 'Login/Authentication Issue': 'Accounting', 'Running Jobs or Using TACC Resources': 'High Performance Computing',