Commit 64149177 authored by Shinya Maeda's avatar Shinya Maeda

Remove conversion string to interger for access_level

parent 6f19fc11
...@@ -59,8 +59,6 @@ class Projects::RunnersController < Projects::ApplicationController ...@@ -59,8 +59,6 @@ class Projects::RunnersController < Projects::ApplicationController
end end
def runner_params def runner_params
params.require(:runner).permit(Ci::Runner::FORM_EDITABLE).tap do |params| params.require(:runner).permit(Ci::Runner::FORM_EDITABLE)
params['access_level'] = params['access_level'].to_i if params['access_level']
end
end end
end end
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
= label :protected, "Protected", class: 'control-label' = label :protected, "Protected", class: 'control-label'
.col-sm-10 .col-sm-10
.checkbox .checkbox
= f.check_box :access_level, {}, Ci::Runner.access_levels['protected_'], Ci::Runner.access_levels['unprotected'] = f.check_box :access_level, {}, 'protected_', 'unprotected'
%span.light This runner will only run on pipelines trigged on protected branches %span.light This runner will only run on pipelines trigged on protected branches
.form-group .form-group
= label :run_untagged, 'Run untagged jobs', class: 'control-label' = label :run_untagged, 'Run untagged jobs', class: 'control-label'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment