mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-03 01:24:58 +02:00
Added the feature for admins to force 2FA on accounts. The next time the user logs in they will have to setup 2FA on their account.
16 lines
546 B
TypeScript
16 lines
546 B
TypeScript
export * from "./login";
|
|
export * from "./signup";
|
|
export * from "./logout";
|
|
export * from "./verifyTotp";
|
|
export * from "./requestTotpSecret";
|
|
export * from "./setupTotpSecret";
|
|
export * from "./completeTotpSetup";
|
|
export * from "./disable2fa";
|
|
export * from "./verifyEmail";
|
|
export * from "./requestEmailVerificationCode";
|
|
export * from "./changePassword";
|
|
export * from "./requestPasswordReset";
|
|
export * from "./resetPassword";
|
|
export * from "./checkResourceSession";
|
|
export * from "./setServerAdmin";
|
|
export * from "./initialSetupComplete";
|