summaryrefslogtreecommitdiff
path: root/app/models/project_auto_devops.rb
blob: c54e421957b2c9bad35c9873e50c30110dca00b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
class ProjectAutoDevops < ActiveRecord::Base
  belongs_to :project

  validates :domain, presence: true, hostname: { allow_numeric_hostname: true }, if: :enabled?

  def variables
    variables = []
    variables << { key: 'AUTO_DEVOPS_DOMAIN', value: domain, public: true } if domain.present?
    variables
  end
end