Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

19143 - Allow signout for pending orgs. #2668

Merged
merged 3 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.4.54",
"version": "2.4.55",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down Expand Up @@ -33,7 +33,7 @@
"moment": "^2.29.4",
"pinia": "^2.1.6",
"pinia-class": "^0.0.3",
"sbc-common-components": "3.0.9",
"sbc-common-components": "3.0.11",
"vue": "2.6.14",
"vue-debounce-decorator": "^1.0.1",
"vue-hotjar": "^1.4.0",
Expand Down
2 changes: 1 addition & 1 deletion auth-web/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ export enum OnholdOrRejectCode {
}

export const ORG_AUTO_COMPLETE_MAX_RESULTS_COUNT = 5
export const ALLOWED_URIS_FOR_PENDING_ORGS: string[] = ['setup-non-bcsc-account']
export const ALLOWED_URIS_FOR_PENDING_ORGS: string[] = ['setup-non-bcsc-account', 'signout']

export const DEACTIVATE_ACCOUNT_MESSAGE : Map<string, string> = new Map([
['OUTSTANDING_CREDIT', 'deactivateCreditAccountMsg'],
Expand Down
Loading