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

index.js « show « repository « settings « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 655243eee304091fc6bd1af76ad94d8b0ee785d6 (plain)
1
2
3
4
5
6
7
8
9
10
import MirrorRepos from '~/mirrors/mirror_repos';
import mountBranchRules from '~/projects/settings/repository/branch_rules/mount_branch_rules';
import initForm from '../form';

initForm();

const mirrorReposContainer = document.querySelector('.js-mirror-settings');
if (mirrorReposContainer) new MirrorRepos(mirrorReposContainer).init();

mountBranchRules(document.getElementById('js-branch-rules'));