Merge branch 'refactor-protected-branches' into 'master'
Remove protected branches webpack bundle tag See merge request gitlab-org/gitlab-ce!17374
This commit is contained in:
commit
e7d0b649ac
4 changed files with 4 additions and 13 deletions
|
@ -4,10 +4,14 @@ import ProtectedTagCreate from '~/protected_tags/protected_tag_create';
|
||||||
import ProtectedTagEditList from '~/protected_tags/protected_tag_edit_list';
|
import ProtectedTagEditList from '~/protected_tags/protected_tag_edit_list';
|
||||||
import initSettingsPanels from '~/settings_panels';
|
import initSettingsPanels from '~/settings_panels';
|
||||||
import initDeployKeys from '~/deploy_keys';
|
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', () => {
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
new ProtectedTagCreate();
|
new ProtectedTagCreate();
|
||||||
new ProtectedTagEditList();
|
new ProtectedTagEditList();
|
||||||
initDeployKeys();
|
initDeployKeys();
|
||||||
initSettingsPanels();
|
initSettingsPanels();
|
||||||
|
new ProtectedBranchCreate(); // eslint-disable-line no-new
|
||||||
|
new ProtectedBranchEditList(); // eslint-disable-line no-new
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
/* 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();
|
|
||||||
});
|
|
|
@ -1,6 +1,3 @@
|
||||||
- content_for :page_specific_javascripts do
|
|
||||||
= webpack_bundle_tag('protected_branches')
|
|
||||||
|
|
||||||
- content_for :create_protected_branch do
|
- content_for :create_protected_branch do
|
||||||
= render 'projects/protected_branches/create_protected_branch'
|
= render 'projects/protected_branches/create_protected_branch'
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,6 @@ function generateEntries() {
|
||||||
const manualEntries = {
|
const manualEntries = {
|
||||||
monitoring: './monitoring/monitoring_bundle.js',
|
monitoring: './monitoring/monitoring_bundle.js',
|
||||||
mr_notes: './mr_notes/index.js',
|
mr_notes: './mr_notes/index.js',
|
||||||
protected_branches: './protected_branches',
|
|
||||||
terminal: './terminal/terminal_bundle.js',
|
terminal: './terminal/terminal_bundle.js',
|
||||||
two_factor_auth: './two_factor_auth.js',
|
two_factor_auth: './two_factor_auth.js',
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue