summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/boards_actions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/boards_actions.rb')
-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..eb1080cb3d2 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, :show]
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