Skip to content
Snippets Groups Projects
Commit 1b25a8f4 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Improve Extract path

parent 07a5cb2e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -51,7 +51,7 @@ module ExtractsPath
return pair unless @project
 
# Remove project, actions and all other staff from path
input.gsub!("/#{@project.path_with_namespace}", "")
input.gsub!(/^\/#{Regexp.escape(@project.path_with_namespace)}/, "")
input.gsub!(/^\/(tree|commits|blame|blob)\//, "") # remove actions
input.gsub!(/\?.*$/, "") # remove stamps suffix
input.gsub!(/.atom$/, "") # remove rss feed
Loading
Loading
@@ -108,7 +108,9 @@ module ExtractsPath
request.format = :atom
end
 
@ref, @path = extract_ref(request.fullpath)
path = request.fullpath.dup
@ref, @path = extract_ref(path)
 
@id = File.join(@ref, @path)
 
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