debian-mirror-gitlab/app/assets/javascripts/protected_branches/index.js

10 lines
309 B
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
/* 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();
});