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

  validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true }

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