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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
08d513a5
Commit
08d513a5
authored
Jun 05, 2018
by
Dennis Tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
redirect back to form if token expires
parent
edb89f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
app/controllers/projects/clusters/gcp_controller.rb
app/controllers/projects/clusters/gcp_controller.rb
+13
-9
No files found.
app/controllers/projects/clusters/gcp_controller.rb
View file @
08d513a5
...
...
@@ -7,17 +7,21 @@ class Projects::Clusters::GcpController < Projects::ApplicationController
helper_method
:valid_gcp_token
def
create
@cluster
=
::
Clusters
::
CreateService
.
new
(
project
,
current_user
,
create_params
)
.
execute
(
token_in_session
)
if
valid_gcp_token
@cluster
=
::
Clusters
::
CreateService
.
new
(
project
,
current_user
,
create_params
)
.
execute
(
token_in_session
)
if
@cluster
.
persisted?
redirect_to
project_cluster_path
(
project
,
@cluster
)
else
@gcp_cluster
=
@cluster
user_cluster
if
@cluster
.
persisted?
redirect_to
project_cluster_path
(
project
,
@cluster
)
else
@gcp_cluster
=
@cluster
user_cluster
render
'projects/clusters/new'
,
locals:
{
active_tab:
'gcp'
}
render
'projects/clusters/new'
,
locals:
{
active_tab:
'gcp'
}
end
else
redirect_to
new_project_cluster_path
(
@project
)
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