summaryrefslogtreecommitdiff
path: root/app/helpers/work_items_helper.rb
blob: 2c61fc20ca8c127c5e1a50369e2e1b06e54c342c (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module WorkItemsHelper
  def work_items_index_data(project)
    {
      full_path: project.full_path,
      issues_list_path: project_issues_path(project)
    }
  end
end