debian-mirror-gitlab/app/assets/javascripts/pages/admin/groups/new/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
298 B
JavaScript
Raw Normal View History

2021-03-11 19:13:27 +05:30
import initFilePickers from '~/file_pickers';
2022-06-21 17:19:12 +05:30
import BindInOut from '~/behaviors/bind_in_out';
import Group from '~/group';
2022-07-23 23:45:48 +05:30
import { initGroupNameAndPath } from '~/groups/create_edit_form';
2018-03-17 18:26:18 +05:30
2021-04-29 21:17:54 +05:30
(() => {
2018-03-17 18:26:18 +05:30
BindInOut.initAll();
2020-06-23 00:09:42 +05:30
initFilePickers();
return new Group();
2021-04-29 21:17:54 +05:30
})();
2022-07-23 23:45:48 +05:30
initGroupNameAndPath();