Skip to content

Commit 5578853

Browse files
authored
Update staff account search account type filter (#3465)
1 parent 56287c9 commit 5578853

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

auth-web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth-web",
3-
"version": "2.10.15",
3+
"version": "2.10.16",
44
"appName": "Auth Web",
55
"sbcName": "SBC Common Components",
66
"private": true,

auth-web/src/components/auth/common/StaffAccountsTable.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,10 @@ export default defineComponent({
409409
[OrgAccountTypes.SBC_STAFF]: {
410410
accessType: [AccessType.GOVM],
411411
orgType: Account.SBC_STAFF
412+
},
413+
[OrgAccountTypes.MAXIMUS_STAFF]: {
414+
accessType: [AccessType.GOVM],
415+
orgType: Account.MAXIMUS_STAFF
412416
}
413417
} as EnumDictionary<OrgAccountTypes, OrgMap>,
414418
accountTypes: [] as string[],

auth-web/src/models/Organization.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,5 +332,6 @@ export enum OrgAccountTypes {
332332
GOVN = 'GovN',
333333
DIRECTOR_SEARCH = 'Director Search',
334334
STAFF = 'BC Registries Staff',
335-
SBC_STAFF = 'Service BC Staff'
335+
SBC_STAFF = 'Service BC Staff',
336+
MAXIMUS_STAFF = 'Maximus Staff'
336337
}

0 commit comments

Comments
 (0)