gitlab-org--gitlab-foss/app/helpers/work_items_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
202 B
Ruby
Raw Normal View History

# 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