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/serializers/environment_entity.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/serializers/environment_entity.rb')
-rw-r--r--app/serializers/environment_entity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/serializers/environment_entity.rb b/app/serializers/environment_entity.rb
index 0fc3f92b151..83558fc6659 100644
--- a/app/serializers/environment_entity.rb
+++ b/app/serializers/environment_entity.rb
@@ -7,7 +7,7 @@ class EnvironmentEntity < Grape::Entity
expose :external_url
expose :environment_type
expose :last_deployment, using: DeploymentEntity
- expose :stop_action?, as: :has_stop_action
+ expose :stop_action_available?, as: :has_stop_action
expose :metrics_path, if: -> (environment, _) { environment.has_metrics? } do |environment|
metrics_project_environment_path(environment.project, environment)