Skip to content

Commit

Permalink
update queue selection for tickets (#262)
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Rosenberg <[email protected]>
  • Loading branch information
jarosenb and Jake Rosenberg authored Jul 10, 2023
1 parent 81351a3 commit 4b56c8d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion apps/tup-cms/src/apps/portal/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ export const TicketCreateForm: React.FC = () => {
<option>Login/Authentication Issue</option>
<option>Running Jobs or Using TACC Resources</option>
<option>Security Incident</option>
<option>Login Issues</option>
<option>Multi-factor Authentication</option>
<option>Other</option>
</FormikSelect>
<FormikSelect name="resource" label="System/Resource" required>
Expand Down
4 changes: 3 additions & 1 deletion libs/tup-components/src/tickets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 4b56c8d

Please sign in to comment.