diff options
| author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-07-12 12:22:11 +0200 |
|---|---|---|
| committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-07-12 12:22:11 +0200 |
| commit | e270366d844d27ba55b96fb589b8505502c76a08 (patch) | |
| tree | b9b6c28de91e158c333bb600d68a8a4190cbf4e2 /app/services | |
| parent | 66c3007ccb7b41226c4264c00c281b09ee729dd4 (diff) | |
| download | gitlab-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.rb | 2 |
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) |
