BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c120b7a1
Unverified
Commit
c120b7a1
authored
Feb 02, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix AutoDevOpsHelper helper methods
parent
e5ee1d6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
auto_devops_helper.rb
app/helpers/auto_devops_helper.rb
+5
-5
No files found.
app/helpers/auto_devops_helper.rb
View file @
c120b7a1
...
...
@@ -9,28 +9,28 @@ module AutoDevopsHelper
end
def
auto_devops_warning_message
(
project
)
if
missing_service?
if
missing_service?
(
project
)
params
=
{
kubernetes:
link_to
(
'Kubernetes cluster'
,
project_clusters_path
(
project
))
}
if
missing_domain?
if
missing_domain?
(
project
)
_
(
'Auto Review Apps and Auto Deploy need a domain name and a %{kubernetes} to work correctly.'
)
%
params
else
_
(
'Auto Review Apps and Auto Deploy need a %{kubernetes} to work correctly.'
)
%
params
end
elsif
missing_domain?
elsif
missing_domain?
(
project
)
_
(
'Auto Review Apps and Auto Deploy need a domain name to work correctly.'
)
end
end
private
def
missing_domain?
def
missing_domain?
(
project
)
!
(
project
.
auto_devops
&
.
has_domain?
||
current_application_settings
.
auto_devops_domain
.
present?
)
end
def
missing_service?
def
missing_service?
(
project
)
!
project
.
deployment_platform
&
.
active?
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