2023-05-27 22:25:52 +05:30
|
|
|
import { initWebauthnAuthenticate, initWebauthnRegister } from './webauthn';
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
export const mount2faAuthentication = () => {
|
2023-05-27 22:25:52 +05:30
|
|
|
initWebauthnAuthenticate();
|
2020-06-23 00:09:42 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
export const mount2faRegistration = () => {
|
2023-05-27 22:25:52 +05:30
|
|
|
initWebauthnRegister();
|
2020-06-23 00:09:42 +05:30
|
|
|
};
|