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

work_items_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efa9a2bd463e283fad20646a5ea1cf6a2d068bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module WorkItemsHelper
  def work_items_index_data(project)
    {
      full_path: project.full_path,
      issues_list_path: project_issues_path(project),
      register_path: new_user_registration_path(redirect_to_referer: 'yes'),
      sign_in_path: new_session_path(:user, redirect_to_referer: 'yes')
    }
  end
end