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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-07-12 13:22:11 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-07-12 13:22:11 +0300
commite270366d844d27ba55b96fb589b8505502c76a08 (patch)
treeb9b6c28de91e158c333bb600d68a8a4190cbf4e2 /app/models/environment.rb
parent66c3007ccb7b41226c4264c00c281b09ee729dd4 (diff)
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/models/environment.rb')
-rw-r--r--app/models/environment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/environment.rb b/app/models/environment.rb
index 8d523dae324..4856d313318 100644
--- a/app/models/environment.rb
+++ b/app/models/environment.rb
@@ -117,7 +117,7 @@ class Environment < ActiveRecord::Base
external_url.gsub(%r{\A.*?://}, '')
end
- def stop_action?
+ def stop_action_available?
available? && stop_action.present?
end