summaryrefslogtreecommitdiff
path: root/app/helpers/boards_helper.rb
blob: 8b33c362a9c17bcb0ef2f62ed2ffa0e53c0394cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module BoardsHelper
  def board_data
    board = @board || @boards.first

    {
      endpoint: project_boards_path(@project),
      board_id: board.id,
      disabled: "#{!can?(current_user, :admin_list, @project)}",
      issue_link_base: project_issues_path(@project),
      root_path: root_path,
      bulk_update_path: bulk_update_project_issues_path(@project),
      default_avatar: image_path(default_avatar)
    }
  end
end