summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/authentication/webauthn/index.js
blob: bbf694c769835d799113fba84b205016a8c86c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import $ from 'jquery';
import WebAuthnAuthenticate from './authenticate';

export default () => {
  const webauthnAuthenticate = new WebAuthnAuthenticate(
    $('#js-authenticate-token-2fa'),
    '#js-login-token-2fa-form',
    gon.webauthn,
    document.querySelector('#js-login-2fa-device'),
    document.querySelector('.js-2fa-form'),
  );
  webauthnAuthenticate.start();
};