Commit 413bce27 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'winh-boards-store-ee' into 'master'

Remove EE-specific code from boards store

Closes #10013

See merge request gitlab-org/gitlab-ee!10568
parents 6040dc22 c5fbad42
......@@ -5,7 +5,7 @@ import $ from 'jquery';
import _ from 'underscore';
import Vue from 'vue';
import Cookies from 'js-cookie';
import BoardsStoreEE from 'ee/boards/stores/boards_store_ee';
import BoardsStoreEE from 'ee_else_ce/boards/stores/boards_store_ee';
import { getUrlParamsArray, parseBoolean } from '~/lib/utils/common_utils';
const boardsStore = {
......@@ -38,13 +38,6 @@ const boardsStore = {
issue: {},
};
},
createNewListDropdownData() {
this.state.currentBoard = {
labels: [],
};
this.state.currentPage = '';
this.state.reload = false;
},
showPage(page) {
this.state.reload = false;
this.state.currentPage = page;
......
// this is just to make ee_else_ce happy and will be cleaned up in https://gitlab.com/gitlab-org/gitlab-ce/issues/59807
export default {
initEESpecific() {},
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment