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/environments.rb')
-rw-r--r--lib/api/environments.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/environments.rb b/lib/api/environments.rb
index c032b80e39b..19b48c1e3cf 100644
--- a/lib/api/environments.rb
+++ b/lib/api/environments.rb
@@ -131,7 +131,7 @@ module API
environment = user_project.environments.find(params[:environment_id])
authorize! :stop_environment, environment
- environment.stop_with_action!(current_user)
+ environment.stop_with_actions!(current_user)
status 200
present environment, with: Entities::Environment, current_user: current_user