Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mount_2fa.js « authentication « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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();
};