gitlab-org--gitlab-foss/app/models/project_auto_devops.rb

25 lines
605 B
Ruby
Raw Normal View History

class ProjectAutoDevops < ActiveRecord::Base
include Gitlab::CurrentSettings
belongs_to :project
2017-09-04 13:44:46 +00:00
scope :enabled, -> { where(enabled: true) }
scope :disabled, -> { where(enabled: false) }
validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true }
2017-09-06 16:57:07 +00:00
def instance_domain
current_application_settings.auto_devops_domain
end
def has_domain?
domain.present? || instance_domain.present?
end
2017-09-06 16:57:07 +00:00
def variables
variables = []
variables << { key: 'AUTO_DEVOPS_DOMAIN', value: domain || instance_domain, public: true } if has_domain?
2017-09-06 16:57:07 +00:00
variables
end
end