mirror of
https://github.com/Infisical/infisical.git
synced 2025-08-05 07:30:33 +00:00
Merge pull request #3642 from Infisical/misc/add-proper-error-for-bypass-failure
misc: add proper error message for bypass failure
This commit is contained in:
@@ -70,10 +70,25 @@ export const SelectOrganizationSection = () => {
|
||||
|
||||
const handleSelectOrganization = useCallback(
|
||||
async (organization: Organization) => {
|
||||
const canBypassOrgAuth =
|
||||
organization.bypassOrgAuthEnabled &&
|
||||
organization.userRole === OrgMembershipRole.Admin &&
|
||||
isAdminLogin;
|
||||
const isUserOrgAdmin = organization.userRole === OrgMembershipRole.Admin;
|
||||
const canBypassOrgAuth = organization.bypassOrgAuthEnabled && isUserOrgAdmin && isAdminLogin;
|
||||
|
||||
if (isAdminLogin) {
|
||||
if (!organization.bypassOrgAuthEnabled) {
|
||||
createNotification({
|
||||
text: "This organization does not have bypass org auth enabled",
|
||||
type: "error"
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (!isUserOrgAdmin) {
|
||||
createNotification({
|
||||
text: "Only organization admins can bypass org auth",
|
||||
type: "error"
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (organization.authEnforced && !canBypassOrgAuth) {
|
||||
// org has an org-level auth method enabled (e.g. SAML)
|
||||
|
Reference in New Issue
Block a user