Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
612ab584
Commit
612ab584
authored
Dec 28, 2015
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mix `url_helpers` into `Ci::Build`
parent
d8cc9e4e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
app/models/ci/build.rb
app/models/ci/build.rb
+6
-10
No files found.
app/models/ci/build.rb
View file @
612ab584
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
module
Ci
module
Ci
class
Build
<
CommitStatus
class
Build
<
CommitStatus
include
Gitlab
::
Application
.
routes
.
url_helpers
LAZY_ATTRIBUTES
=
[
'trace'
]
LAZY_ATTRIBUTES
=
[
'trace'
]
belongs_to
:runner
,
class_name:
'Ci::Runner'
belongs_to
:runner
,
class_name:
'Ci::Runner'
...
@@ -291,20 +292,17 @@ module Ci
...
@@ -291,20 +292,17 @@ module Ci
end
end
def
target_url
def
target_url
Gitlab
::
Application
.
routes
.
url_helpers
.
namespace_project_build_url
(
project
.
namespace
,
project
,
self
)
namespace_project_build_url
(
project
.
namespace
,
project
,
self
)
end
end
def
cancel_url
def
cancel_url
if
active?
if
active?
Gitlab
::
Application
.
routes
.
url_helpers
.
cancel_namespace_project_build_path
(
project
.
namespace
,
project
,
self
)
cancel_namespace_project_build_path
(
project
.
namespace
,
project
,
self
)
end
end
end
end
def
retry_url
def
retry_url
if
retryable?
if
retryable?
Gitlab
::
Application
.
routes
.
url_helpers
.
retry_namespace_project_build_path
(
project
.
namespace
,
project
,
self
)
retry_namespace_project_build_path
(
project
.
namespace
,
project
,
self
)
end
end
end
end
...
@@ -323,14 +321,12 @@ module Ci
...
@@ -323,14 +321,12 @@ module Ci
def
download_url
def
download_url
if
artifacts_file
.
exists?
if
artifacts_file
.
exists?
Gitlab
::
Application
.
routes
.
url_helpers
.
download_namespace_project_build_artifacts_path
(
project
.
namespace
,
project
,
self
)
download_namespace_project_build_artifacts_path
(
project
.
namespace
,
project
,
self
)
end
end
end
end
def
artifacts_browse_url
def
artifacts_browse_url
if
artifacts_file
.
exists?
if
artifacts_file
.
exists?
Gitlab
::
Application
.
routes
.
url_helpers
.
browse_namespace_project_build_artifacts_path
(
project
.
namespace
,
project
,
self
)
browse_namespace_project_build_artifacts_path
(
project
.
namespace
,
project
,
self
)
end
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