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
c075a047
Unverified
Commit
c075a047
authored
May 30, 2018
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor cluster app creation code in controller
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
698cd397
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
applications_controller.rb
app/controllers/projects/clusters/applications_controller.rb
+5
-4
No files found.
app/controllers/projects/clusters/applications_controller.rb
View file @
c075a047
...
@@ -5,17 +5,18 @@ class Projects::Clusters::ApplicationsController < Projects::ApplicationControll
...
@@ -5,17 +5,18 @@ class Projects::Clusters::ApplicationsController < Projects::ApplicationControll
before_action
:authorize_create_cluster!
,
only:
[
:create
]
before_action
:authorize_create_cluster!
,
only:
[
:create
]
def
create
def
create
application
=
@application_class
.
find_or_
create_by!
(
cluster:
@cluster
)
application
=
@application_class
.
find_or_
initialize_by
(
cluster:
@cluster
)
if
application
.
respond_to
?
(
:hostname
)
if
has_attribute
?
(
:hostname
)
application
.
update
(
hostname:
params
[
:hostname
])
application
.
hostname
=
params
[
:hostname
]
end
end
if
application
.
respond_to?
(
:oauth_application
)
if
application
.
respond_to?
(
:oauth_application
)
application
.
oauth_application
=
create_oauth_application
(
application
)
application
.
oauth_application
=
create_oauth_application
(
application
)
application
.
save
end
end
application
.
save!
Clusters
::
Applications
::
ScheduleInstallationService
.
new
(
project
,
current_user
).
execute
(
application
)
Clusters
::
Applications
::
ScheduleInstallationService
.
new
(
project
,
current_user
).
execute
(
application
)
head
:no_content
head
:no_content
...
...
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