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:
Diffstat (limited to 'app/helpers/work_items_helper.rb')
-rw-r--r--app/helpers/work_items_helper.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/helpers/work_items_helper.rb b/app/helpers/work_items_helper.rb
index 1969c98de8b..d2e3d41377a 100644
--- a/app/helpers/work_items_helper.rb
+++ b/app/helpers/work_items_helper.rb
@@ -1,10 +1,11 @@
# frozen_string_literal: true
module WorkItemsHelper
- def work_items_index_data(project)
+ def work_items_index_data(resource_parent)
{
- full_path: project.full_path,
- issues_list_path: project_issues_path(project),
+ full_path: resource_parent.full_path,
+ issues_list_path:
+ resource_parent.is_a?(Group) ? issues_group_path(resource_parent) : project_issues_path(resource_parent),
register_path: new_user_registration_path(redirect_to_referer: 'yes'),
sign_in_path: new_session_path(:user, redirect_to_referer: 'yes'),
new_comment_template_path: profile_comment_templates_path,