Skip to content
Snippets Groups Projects
Commit e7cc554c authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Fix retry and cancel URLs

parent 4bf69b0b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -219,13 +219,15 @@ module Ci
 
def cancel_url
if active?
cancel_namespace_project_build_path(gl_project.namespace, gl_project, self, return_to: request.original_url)
Gitlab::Application.routes.url_helpers.
cancel_namespace_project_build_path(gl_project.namespace, gl_project, self, return_to: request.original_url)
end
end
 
def retry_url
if commands.present?
cancel_namespace_project_build_path(gl_project.namespace, gl_project, self, return_to: request.original_url)
Gitlab::Application.routes.url_helpers.
cancel_namespace_project_build_path(gl_project.namespace, gl_project, self, return_to: request.original_url)
end
end
 
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