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
Boxiang Sun
gitlab-ce
Commits
edbe911b
Commit
edbe911b
authored
Jan 23, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant routes in VariablesController
parent
5de85708
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
102 deletions
+2
-102
app/controllers/projects/variables_controller.rb
app/controllers/projects/variables_controller.rb
+0
-51
config/routes/project.rb
config/routes/project.rb
+2
-4
spec/controllers/projects/variables_controller_spec.rb
spec/controllers/projects/variables_controller_spec.rb
+0
-47
No files found.
app/controllers/projects/variables_controller.rb
View file @
edbe911b
class
Projects::VariablesController
<
Projects
::
ApplicationController
before_action
:variable
,
only:
[
:show
,
:update
,
:destroy
]
before_action
:authorize_admin_build!
layout
'project_settings'
def
index
redirect_to
project_settings_ci_cd_path
(
@project
)
end
def
show
end
def
update
if
variable
.
update
(
variable_params
)
redirect_to
project_variables_path
(
project
),
notice:
'Variable was successfully updated.'
else
render
"show"
end
end
def
create
@variable
=
project
.
variables
.
create
(
variable_params
)
.
present
(
current_user:
current_user
)
if
@variable
.
persisted?
redirect_to
project_settings_ci_cd_path
(
project
),
notice:
'Variable was successfully created.'
else
render
"show"
end
end
def
save_multiple
respond_to
do
|
format
|
format
.
json
do
...
...
@@ -42,24 +11,8 @@ class Projects::VariablesController < Projects::ApplicationController
end
end
def
destroy
if
variable
.
destroy
redirect_to
project_settings_ci_cd_path
(
project
),
status:
302
,
notice:
'Variable was successfully removed.'
else
redirect_to
project_settings_ci_cd_path
(
project
),
status:
302
,
notice:
'Failed to remove the variable.'
end
end
private
def
variable_params
params
.
require
(
:variable
).
permit
(
*
variable_params_attributes
)
end
def
variables_params
params
.
permit
(
variables_attributes:
[
*
variable_params_attributes
])
end
...
...
@@ -67,8 +20,4 @@ class Projects::VariablesController < Projects::ApplicationController
def
variable_params_attributes
%i[id key value protected _destroy]
end
def
variable
@variable
||=
project
.
variables
.
find
(
params
[
:id
]).
present
(
current_user:
current_user
)
end
end
config/routes/project.rb
View file @
edbe911b
...
...
@@ -156,10 +156,8 @@ constraints(ProjectUrlConstrainer.new) do
end
end
resources
:variables
,
only:
[
:index
,
:show
,
:update
,
:create
,
:destroy
]
do
collection
do
post
:save_multiple
end
namespace
:variables
do
post
:save_multiple
end
resources
:triggers
,
only:
[
:index
,
:create
,
:edit
,
:update
,
:destroy
]
do
...
...
spec/controllers/projects/variables_controller_spec.rb
View file @
edbe911b
...
...
@@ -9,53 +9,6 @@ describe Projects::VariablesController do
project
.
add_master
(
user
)
end
describe
'POST #create'
do
context
'variable is valid'
do
it
'shows a success flash message'
do
post
:create
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
variable:
{
key:
"one"
,
value:
"two"
}
expect
(
flash
[
:notice
]).
to
include
'Variable was successfully created.'
expect
(
response
).
to
redirect_to
(
project_settings_ci_cd_path
(
project
))
end
end
context
'variable is invalid'
do
it
'renders show'
do
post
:create
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
variable:
{
key:
"..one"
,
value:
"two"
}
expect
(
response
).
to
render_template
(
"projects/variables/show"
)
end
end
end
describe
'POST #update'
do
let
(
:variable
)
{
create
(
:ci_variable
)
}
context
'updating a variable with valid characters'
do
before
do
project
.
variables
<<
variable
end
it
'shows a success flash message'
do
post
:update
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
id:
variable
.
id
,
variable:
{
key:
variable
.
key
,
value:
'two'
}
expect
(
flash
[
:notice
]).
to
include
'Variable was successfully updated.'
expect
(
response
).
to
redirect_to
(
project_variables_path
(
project
))
end
it
'renders the action #show if the variable key is invalid'
do
post
:update
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
id:
variable
.
id
,
variable:
{
key:
'?'
,
value:
variable
.
value
}
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
render_template
:show
end
end
end
describe
'POST #save_multiple'
do
let
(
:variable
)
{
create
(
:ci_variable
)
}
...
...
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