summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/profiles/two_factor_auths/index.js
blob: 24dbc312dd2f054430ab903923ed23d282b9094f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { parseBoolean } from '~/lib/utils/common_utils';
import { mount2faRegistration } from '~/authentication/mount_2fa';
import { initRecoveryCodes } from '~/authentication/two_factor_auth';

document.addEventListener('DOMContentLoaded', () => {
  const twoFactorNode = document.querySelector('.js-two-factor-auth');
  const skippable = twoFactorNode ? parseBoolean(twoFactorNode.dataset.twoFactorSkippable) : false;

  if (skippable) {
    const button = `<a class="btn btn-sm btn-warning float-right" data-qa-selector="configure_it_later_button" data-method="patch" href="${twoFactorNode.dataset.two_factor_skip_url}">Configure it later</a>`;
    const flashAlert = document.querySelector('.flash-alert');
    if (flashAlert) flashAlert.insertAdjacentHTML('beforeend', button);
  }

  mount2faRegistration();
});

initRecoveryCodes();