summaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-07-12 12:22:11 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-07-12 12:22:11 +0200
commite270366d844d27ba55b96fb589b8505502c76a08 (patch)
treeb9b6c28de91e158c333bb600d68a8a4190cbf4e2 /app/services
parent66c3007ccb7b41226c4264c00c281b09ee729dd4 (diff)
downloadgitlab-ce-e270366d844d27ba55b96fb589b8505502c76a08.tar.gz
Rename environments stop action method
This makes it more explicit that an environment is not a stop action, but instead is merely contains a stop action.
Diffstat (limited to 'app/services')
-rw-r--r--app/services/ci/stop_environments_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/ci/stop_environments_service.rb b/app/services/ci/stop_environments_service.rb
index 43c9a065fcf..439746e82bd 100644
--- a/app/services/ci/stop_environments_service.rb
+++ b/app/services/ci/stop_environments_service.rb
@@ -8,7 +8,7 @@ module Ci
return unless @ref.present?
environments.each do |environment|
- next unless environment.stop_action?
+ next unless environment.stop_action_available?
next unless can?(current_user, :stop_environment, environment)
environment.stop_with_action!(current_user)