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

index.js « two_factor_auths « profiles « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49fdf5bb6b5989a5c96ae860bff3cd25d7b177ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { mount2faRegistration } from '~/authentication/mount_2fa';
import { initRecoveryCodes, initManageTwoFactorForm } from '~/authentication/two_factor_auth';
import { parseBoolean } from '~/lib/utils/common_utils';

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

if (skippable) {
  const button = `<br/><a class="btn gl-button btn-sm btn-confirm gl-mt-3" 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();

initManageTwoFactorForm();