提交 5b9971fa 编写于 作者: L Lin Jen-Shin

Use the same style in the same file, feedback:

https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16957939
上级 78c69d8d
......@@ -95,35 +95,19 @@ module GitlabRoutingHelper
end
def pipeline_url(pipeline, *args)
namespace_project_pipeline_url(
pipeline.project.namespace,
pipeline.project,
pipeline.id,
*args)
namespace_project_pipeline_url(pipeline.project.namespace, pipeline.project, pipeline.id, *args)
end
def pipeline_build_url(pipeline, build, *args)
namespace_project_build_url(
pipeline.project.namespace,
pipeline.project,
build.id,
*args)
namespace_project_build_url(pipeline.project.namespace, pipeline.project,build.id, *args)
end
def commits_url(entity, *args)
namespace_project_commits_url(
entity.project.namespace,
entity.project,
entity.ref,
*args)
namespace_project_commits_url(entity.project.namespace, entity.project, entity.ref, *args)
end
def commit_url(entity, *args)
namespace_project_commit_url(
entity.project.namespace,
entity.project,
entity.sha,
*args)
namespace_project_commit_url(entity.project.namespace, entity.project, entity.sha, *args)
end
def project_snippet_url(entity, *args)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册