Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_auto_devops.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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