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: 9917151ac81d51b08b417a6c4b84dad100a02eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import $ from 'jquery';
import initU2F from './u2f';
import U2FRegister from './u2f/register';

export const mount2faAuthentication = () => {
  // Soon this will conditionally mount a webauthn app (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/26692)
  initU2F();
};

export const mount2faRegistration = () => {
  // Soon this will conditionally mount a webauthn app (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/26692)
  const u2fRegister = new U2FRegister($('#js-register-u2f'), gon.u2f);
  u2fRegister.start();
};