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

index.js « general « application_settings « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a810ca649c8cda6018fe1c91b2d1b910b61408a (plain)
1
2
3
4
5
6
7
8
9
import initAccountAndLimitsSection from '../account_and_limits';
import initGitpod from '../gitpod';
import initSignupRestrictions from '../signup_restrictions';

(() => {
  initAccountAndLimitsSection();
  initGitpod();
  initSignupRestrictions();
})();