后端移除: - SAML: auth/saml.go, handler/saml_handler.go, account_saml_settings_handler.go, model/account_saml_settings.go, model/saml_idp_config.go, repo/*.go - LDAP: auth/ldap.go, handler/ldap_handler.go, model/account_ldap_settings.go, repo/account_ldap_settings_repo.go - MFA: auth/mfa.go, handler/mfa_handler.go - auth_service: 移除 mfaService 依赖、MFARequired 字段、LoginWithMFA 方法 - auth_handler: 移除 LoginMFA handler、MFA 分支逻辑 - bootstrap: 移除 SAML/LDAP/MFA service 初始化和 handler 注册 - sso_middleware: 精简为仅支持 OIDC provider - router: 移除 SAML/LDAP/MFA 路由注册 - config: 移除 SAMLConfig/LDAPConfig struct 和 defaults 前端移除: - v3/login: 移除 MFA 验证流程和 SAML 登录入口 - v3/api/auth: 移除 MFA 响应处理 - v3/routes: 移除 SSO login 路由 - dashboard: 移除 MFA 设置页面、SAML 安全设置页面 - i18n: 移除 mfa.json - featureFlags: 移除 SAML feature flag .env.example / .env: 移除 SAML/LDAP 配置段
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import { frontendURL } from 'dashboard/helper/URLHelper';
|
|
|
|
import Login from './login/Index.vue';
|
|
import ResetPassword from './auth/reset/password/Index.vue';
|
|
import Confirmation from './auth/confirmation/Index.vue';
|
|
import VerifyEmail from './auth/verify-email/Index.vue';
|
|
import PasswordEdit from './auth/password/Edit.vue';
|
|
|
|
export default [
|
|
{
|
|
path: frontendURL('login'),
|
|
name: 'login',
|
|
component: Login,
|
|
props: route => ({
|
|
config: route.query.config,
|
|
email: route.query.email,
|
|
ssoAuthToken: route.query.sso_auth_token,
|
|
ssoAccountId: route.query.sso_account_id,
|
|
ssoConversationId: route.query.sso_conversation_id,
|
|
authError: route.query.error,
|
|
}),
|
|
},
|
|
{
|
|
path: frontendURL('auth/confirmation'),
|
|
name: 'auth_confirmation',
|
|
component: Confirmation,
|
|
meta: { ignoreSession: true },
|
|
props: route => ({
|
|
config: route.query.config,
|
|
confirmationToken: route.query.confirmation_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: frontendURL('auth/verify-email'),
|
|
name: 'auth_verify_email',
|
|
component: VerifyEmail,
|
|
meta: { ignoreSession: true },
|
|
props: () => ({
|
|
email: window.history.state?.email || '',
|
|
}),
|
|
},
|
|
{
|
|
path: frontendURL('auth/password/edit'),
|
|
name: 'auth_password_edit',
|
|
component: PasswordEdit,
|
|
meta: { ignoreSession: true },
|
|
props: route => ({
|
|
config: route.query.config,
|
|
resetPasswordToken: route.query.reset_password_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: frontendURL('auth/reset/password'),
|
|
name: 'auth_reset_password',
|
|
component: ResetPassword,
|
|
},
|
|
];
|