Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
c10c91d7cc9f
Commit
38fb6279
authored
Apr 20, 2015
by
Robert Speicher
Browse files
Simplify `cross_project_reference` with `to_reference`
parent
f09bd33971c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/helpers/gitlab_markdown_helper.rb
View file @
c10c91d7
...
...
@@ -135,15 +135,25 @@ def truncate_if_block(node, truncated)
end
end
# Returns the text necessary to reference `entity` across projects
#
# project - Project to reference
# entity - Object that responds to `to_reference`
#
# Examples:
#
# cross_project_reference(project, project.issues.first)
# # => 'namespace1/project1#123'
#
# cross_project_reference(project, project.merge_requests.first)
# # => 'namespace1/project1!345'
#
# Returns a String
def
cross_project_reference
(
project
,
entity
)
path
=
project
.
path_with_namespace
if
entity
.
kind_of?
(
Issue
)
[
path
,
entity
.
iid
].
join
(
'#'
)
elsif
entity
.
kind_of?
(
MergeRequest
)
[
path
,
entity
.
iid
].
join
(
'!'
)
if
entity
.
respond_to?
(
:to_reference
)
"
#{
project
.
to_reference
}#{
entity
.
to_reference
}
"
else
raise
'Not supported type
'
'
'
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment