mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d1d02d9eae
* Redirect to default URL after 1FA when default policy is one_factor. User is now redirected to the default redirection URL after 1FA if the default policy is set to one_factor and there is no target URL or if the target URL is unsafe. Also, if the default policy is set to one_factor and the user is already authenticated, if she visits the login portal, the 'already authenticated' view is displayed with a logout button. This fixes #581. * Update users.yml * Fix permissions issue causing suite test failure
14 lines
622 B
TypeScript
14 lines
622 B
TypeScript
|
|
export const FirstFactorRoute = "/";
|
|
export const AuthenticatedRoute = "/authenticated";
|
|
|
|
export const SecondFactorRoute = "/2fa";
|
|
export const SecondFactorU2FRoute = "/2fa/security-key";
|
|
export const SecondFactorTOTPRoute = "/2fa/one-time-password";
|
|
export const SecondFactorPushRoute = "/2fa/push-notification";
|
|
|
|
export const ResetPasswordStep1Route = "/reset-password/step1";
|
|
export const ResetPasswordStep2Route = "/reset-password/step2";
|
|
export const RegisterSecurityKeyRoute = "/security-key/register";
|
|
export const RegisterOneTimePasswordRoute = "/one-time-password/register";
|
|
export const LogoutRoute = "/logout"; |