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:
authorSean McGivern <sean@mcgivern.me.uk>2017-11-07 12:57:44 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-11-07 12:57:44 +0300
commit39afe3bc15d27b98938c78a655fa2d7fdfbcaa0a (patch)
tree8e1679162f299e33ed9351c280e84facdea928b3 /app/helpers
parent859cdd3d3c8b118c665beecd79a059b58de2e1a8 (diff)
parent9bd3d25512dcd6253de27520145cb203ac287f1b (diff)
Merge branch '2518-saved-configuration-for-issue-board' into 'master'
[CE backport] Saved configuration for issue board See merge request gitlab-org/gitlab-ce!15108
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/boards_helper.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/helpers/boards_helper.rb b/app/helpers/boards_helper.rb
index 7112c6ee470..c4a621160af 100644
--- a/app/helpers/boards_helper.rb
+++ b/app/helpers/boards_helper.rb
@@ -20,17 +20,6 @@ module BoardsHelper
project_issues_path(@project)
end
- def current_board_json
- board = @board || @boards.first
-
- board.to_json(
- only: [:id, :name, :milestone_id],
- include: {
- milestone: { only: [:title] }
- }
- )
- end
-
def board_base_url
project_boards_path(@project)
end