Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Artur <felipefac@gmail.com>2017-09-05 00:36:31 +0300
committerFelipe Artur <felipefac@gmail.com>2017-09-05 00:36:31 +0300
commit74740604211dab6632771f1bfd7dd67902fea7ef (patch)
tree5b7b4415d689b984116cbea37a330670ce9fdb89 /app/helpers/boards_helper.rb
parentf5bb1789ee170cbdfb7580f6ec5de17ce06b6cbc (diff)
Fix route conflict
Diffstat (limited to 'app/helpers/boards_helper.rb')
-rw-r--r--app/helpers/boards_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/boards_helper.rb b/app/helpers/boards_helper.rb
index 3133b716345..4bd61aa8f86 100644
--- a/app/helpers/boards_helper.rb
+++ b/app/helpers/boards_helper.rb
@@ -39,8 +39,8 @@ module BoardsHelper
current_board_parent.multiple_issue_boards_available?(current_user)
end
- def board_path(board)
- @board_path ||= project_board_path(current_board_parent, board)
+ def current_board_path(board)
+ @current_board_path ||= project_board_path(current_board_parent, board)
end
def current_board_parent