-
Notifications
You must be signed in to change notification settings - Fork 267
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
Add pre auth and tenant switch improvement for central deployment related authentication #7291
base: master
Are you sure you want to change the base?
Add pre auth and tenant switch improvement for central deployment related authentication #7291
Conversation
🦋 Changeset detectedThe changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #7291 +/- ##
=======================================
Coverage 41.85% 41.85%
=======================================
Files 42 42
Lines 939 939
Branches 217 230 +13
=======================================
Hits 393 393
+ Misses 546 502 -44
- Partials 0 44 +44
Flags with carried forward coverage won't be shown. Click here to find out more. |
52544f6
to
066a888
Compare
c2201d6
to
fbb1a84
Compare
fbb1a84
to
19e90ca
Compare
9a347f0
to
21a41d6
Compare
"@wso2is/myaccount": minor | ||
"@wso2is/console": minor | ||
"@wso2is/core": minor | ||
"@wso2is/i18n": minor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add admin.base.v1
too
@@ -1,5 +1,5 @@ | |||
/** | |||
* Copyright (c) 2021, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. | |||
* Copyright (c) 2021, WSO2 LLC. (https://www.wso2.com). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Copyright (c) 2021, WSO2 LLC. (https://www.wso2.com). | |
* Copyright (c) 2021-2025, WSO2 LLC. (https://www.wso2.com). |
placeholder = { t("tenants:deploymentUtits.placeholder") } | ||
required={ true } | ||
options={ deploymentUnitOptions } | ||
readOnly={ true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this is readonly, end users may not be able to select the region, might they?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It worked locally with above configurations
if (deploymentUnitJson === undefined) { | ||
setIsValidDeploymentUnit(false); | ||
} else { | ||
setSelectedDeploymentUnit(deploymentUnitJson??JSON.parse(deploymentUnitJson)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setSelectedDeploymentUnit(deploymentUnitJson??JSON.parse(deploymentUnitJson)); | |
setSelectedDeploymentUnit(deploymentUnitJson ??JSON.parse(deploymentUnitJson)); |
Purpose
Checklist
Security checks