summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/protected_branches/index.js')
-rw-r--r--app/assets/javascripts/protected_branches/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/assets/javascripts/protected_branches/index.js b/app/assets/javascripts/protected_branches/index.js
new file mode 100644
index 00000000000..c9e7af127d2
--- /dev/null
+++ b/app/assets/javascripts/protected_branches/index.js
@@ -0,0 +1,9 @@
+/* eslint-disable no-unused-vars */
+
+import ProtectedBranchCreate from './protected_branch_create';
+import ProtectedBranchEditList from './protected_branch_edit_list';
+
+$(() => {
+ const protectedBranchCreate = new ProtectedBranchCreate();
+ const protectedBranchEditList = new ProtectedBranchEditList();
+});