summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/settings/repository/form.js
blob: 8d390c8586b45f2c8a7fb13b00deca6f5aa733d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* eslint-disable no-new */

import initDeployKeys from '~/deploy_keys';
import DueDateSelectors from '~/due_date_select';
import fileUpload from '~/lib/utils/file_upload';
import ProtectedBranchCreate from '~/protected_branches/protected_branch_create';
import ProtectedBranchEditList from '~/protected_branches/protected_branch_edit_list';
import ProtectedTagCreate from '~/protected_tags/protected_tag_create';
import ProtectedTagEditList from '~/protected_tags/protected_tag_edit_list';
import initSettingsPanels from '~/settings_panels';

export default () => {
  new ProtectedTagCreate();
  new ProtectedTagEditList();
  initDeployKeys();
  initSettingsPanels();
  new ProtectedBranchCreate({ hasLicense: false });
  new ProtectedBranchEditList();
  new DueDateSelectors();
  fileUpload('.js-choose-file', '.js-object-map-input');
};