debian-mirror-gitlab/app/models/ci/group_variable.rb
2018-03-27 19:54:05 +05:30

17 lines
335 B
Ruby

module Ci
class GroupVariable < ActiveRecord::Base
extend Gitlab::Ci::Model
include HasVariable
include Presentable
belongs_to :group
validates :key, uniqueness: {
scope: :group_id,
message: "(%{value}) has already been taken"
}
scope :unprotected, -> { where(protected: false) }
end
end