Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/features.rb')
-rw-r--r--lib/api/features.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/features.rb b/lib/api/features.rb
index f507919b055..3fb3fc92e42 100644
--- a/lib/api/features.rb
+++ b/lib/api/features.rb
@@ -61,7 +61,7 @@ module API
mutually_exclusive :key, :project
end
post ':name' do
- feature = Feature.get(params[:name])
+ feature = Feature.get(params[:name]) # rubocop:disable Gitlab/AvoidFeatureGet
targets = gate_targets(params)
value = gate_value(params)
key = gate_key(params)
@@ -92,7 +92,7 @@ module API
desc 'Remove the gate value for the given feature'
delete ':name' do
- Feature.get(params[:name]).remove
+ Feature.remove(params[:name])
no_content!
end