diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-03-02 16:28:26 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2018-03-02 16:28:26 +0000 |
commit | 834f4de181c07d527b9b91d889e0c5b6da8440c4 (patch) | |
tree | 348c9666d2c927da8c4f26094e4062bae82cef4d /app/assets/javascripts/pages/projects/settings | |
parent | 9b704ef327cc0224bf09c1e8d8d27df88ab13734 (diff) | |
download | gitlab-ce-834f4de181c07d527b9b91d889e0c5b6da8440c4.tar.gz |
Remove protected branches webpack bundle tag
Diffstat (limited to 'app/assets/javascripts/pages/projects/settings')
-rw-r--r-- | app/assets/javascripts/pages/projects/settings/repository/show/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/pages/projects/settings/repository/show/index.js b/app/assets/javascripts/pages/projects/settings/repository/show/index.js index 001128ead59..788d86d1192 100644 --- a/app/assets/javascripts/pages/projects/settings/repository/show/index.js +++ b/app/assets/javascripts/pages/projects/settings/repository/show/index.js @@ -4,10 +4,14 @@ 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'; +import ProtectedBranchCreate from '~/protected_branches/protected_branch_create'; +import ProtectedBranchEditList from '~/protected_branches/protected_branch_edit_list'; document.addEventListener('DOMContentLoaded', () => { new ProtectedTagCreate(); new ProtectedTagEditList(); initDeployKeys(); initSettingsPanels(); + new ProtectedBranchCreate(); // eslint-disable-line no-new + new ProtectedBranchEditList(); // eslint-disable-line no-new }); |