Skip to content
Snippets Groups Projects
Commit c85c6815 authored by Berna Castro's avatar Berna Castro Committed by Oswaldo Ferreir
Browse files

Add the group path to the issue ID if applicable

parent 4e2b9d70
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -591,10 +591,18 @@ class Project < ActiveRecord::Base
end
end
 
def to_reference(from_project = nil, full: false)
if full || cross_namespace_reference?(from_project)
path_with_namespace
elsif cross_project_reference?(from_project)
def to_reference(from_project = nil, from_group = nil)
if from_group.nil?
if cross_namespace_reference?(from_project)
path_with_namespace
elsif cross_project_reference?(from_project)
path
elsif self == from_project
nil
else
path_with_namespace
end
else
path
end
end
Loading
Loading
Loading
Loading
@@ -34,7 +34,7 @@
= note_count
 
.issue-info
#{issue.to_reference} &middot;
#{issue.to_reference(@project, @group)} &middot;
opened #{time_ago_with_tooltip(issue.created_at, placement: 'bottom')}
by #{link_to_member(@project, issue.author, avatar: false)}
- if issue.milestone
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment