summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/authentication/mount_2fa.js
blob: 29dcab9ed4d654a2f6daca60d4615fe821b03251 (plain)
1
2
3
4
5
6
7
8
9
import { initWebauthnAuthenticate, initWebauthnRegister } from './webauthn';

export const mount2faAuthentication = () => {
  initWebauthnAuthenticate();
};

export const mount2faRegistration = () => {
  initWebauthnRegister();
};