debian-mirror-gitlab/app/models/ci/variable.rb
2017-09-10 17:25:29 +05:30

14 lines
286 B
Ruby

module Ci
class Variable < ActiveRecord::Base
extend Ci::Model
include HasVariable
include Presentable
belongs_to :project
validates :key, uniqueness: { scope: [:project_id, :environment_scope] }
scope :unprotected, -> { where(protected: false) }
end
end