summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-11-21 06:06:32 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-11-21 06:06:32 +0000
commit80e5134020483299c039114e76b734436f006c66 (patch)
treec01e1b0451c336f2349cc7db9c9dc317b98bed54 /app/controllers
parent8d78e95a9c5b352fb0498ca9c46d068eb93e6e27 (diff)
downloadgitlab-ce-80e5134020483299c039114e76b734436f006c66.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/concerns/boards_actions.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/concerns/boards_actions.rb b/app/controllers/concerns/boards_actions.rb
index a093d0d6e7f..3a9a59b0ad7 100644
--- a/app/controllers/concerns/boards_actions.rb
+++ b/app/controllers/concerns/boards_actions.rb
@@ -9,6 +9,7 @@ module BoardsActions
before_action :boards, only: :index
before_action :board, only: :show
+ before_action :push_wip_limits, only: :index
end
def index
@@ -24,6 +25,10 @@ module BoardsActions
private
+ # Noop on FOSS
+ def push_wip_limits
+ end
+
def boards
strong_memoize(:boards) do
Boards::ListService.new(parent, current_user).execute