Make commit and MR ref filters aware of /builds path
This commit is contained in:
parent
c767d0e6bd
commit
af6b543742
2 changed files with 18 additions and 1 deletions
|
@ -47,6 +47,17 @@ module Gitlab
|
|||
def object_link_title(commit)
|
||||
commit.link_title
|
||||
end
|
||||
|
||||
def object_link_text_extras(object, matches)
|
||||
extras = super
|
||||
|
||||
path = matches[:path] if matches.names.include?("path")
|
||||
if path == '/builds'
|
||||
extras.unshift "builds"
|
||||
end
|
||||
|
||||
extras
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -24,8 +24,14 @@ module Gitlab
|
|||
def object_link_text_extras(object, matches)
|
||||
extras = super
|
||||
|
||||
if matches.names.include?("path") && matches[:path] && matches[:path] == '/diffs'
|
||||
path = matches[:path] if matches.names.include?("path")
|
||||
case path
|
||||
when '/diffs'
|
||||
extras.unshift "diffs"
|
||||
when '/builds'
|
||||
extras.unshift "builds"
|
||||
when '/commits'
|
||||
extras.unshift "commits"
|
||||
end
|
||||
|
||||
extras
|
||||
|
|
Loading…
Reference in a new issue