feat: support auto signup with SAML (#4129)

This commit is contained in:
DacongDA
2025-08-29 11:51:52 +08:00
committed by GitHub
parent 9cb633c9e2
commit f26f56e88b
28 changed files with 32 additions and 32 deletions

View File

@@ -147,7 +147,7 @@ class ProviderTable extends React.Component {
key: "canSignUp",
width: "120px",
render: (text, record, index) => {
if (!["OAuth", "Web3"].includes(record.provider?.category)) {
if (!["OAuth", "Web3", "SAML"].includes(record.provider?.category)) {
return null;
}
@@ -164,7 +164,7 @@ class ProviderTable extends React.Component {
key: "canSignIn",
width: "120px",
render: (text, record, index) => {
if (!["OAuth", "Web3"].includes(record.provider?.category)) {
if (!["OAuth", "Web3", "SAML"].includes(record.provider?.category)) {
return null;
}
@@ -181,7 +181,7 @@ class ProviderTable extends React.Component {
key: "canUnlink",
width: "120px",
render: (text, record, index) => {
if (!["OAuth", "Web3"].includes(record.provider?.category)) {
if (!["OAuth", "Web3", "SAML"].includes(record.provider?.category)) {
return null;
}
@@ -198,7 +198,7 @@ class ProviderTable extends React.Component {
key: "prompted",
width: "120px",
render: (text, record, index) => {
if (!["OAuth", "Web3"].includes(record.provider?.category)) {
if (!["OAuth", "Web3", "SAML"].includes(record.provider?.category)) {
return null;
}