Class: ProjectAutoDevops
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- ProjectAutoDevops
- Defined in:
- app/models/project_auto_devops.rb
Instance Method Summary collapse
Methods inherited from ApplicationRecord
at_most, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, underscore, without_order
Instance Method Details
#predefined_variables ⇒ Object
17 18 19 20 21 22 |
# File 'app/models/project_auto_devops.rb', line 17 def predefined_variables Gitlab::Ci::Variables::Collection.new.tap do |variables| variables.append(key: 'AUTO_DEVOPS_EXPLICITLY_ENABLED', value: '1') if enabled? variables.concat(deployment_strategy_default_variables) end end |