summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/settings/repository/show/index.js
blob: 001128ead593dd0625b97924078c779753a715c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable no-new */

import ProtectedTagCreate from '~/protected_tags/protected_tag_create';
import ProtectedTagEditList from '~/protected_tags/protected_tag_edit_list';
import initSettingsPanels from '~/settings_panels';
import initDeployKeys from '~/deploy_keys';

document.addEventListener('DOMContentLoaded', () => {
  new ProtectedTagCreate();
  new ProtectedTagEditList();
  initDeployKeys();
  initSettingsPanels();
});