2017-09-10 17:25:29 +05:30
|
|
|
module Ci
|
|
|
|
class GroupVariable < ActiveRecord::Base
|
2018-03-17 18:26:18 +05:30
|
|
|
extend Gitlab::Ci::Model
|
2017-09-10 17:25:29 +05:30
|
|
|
include HasVariable
|
|
|
|
include Presentable
|
|
|
|
|
|
|
|
belongs_to :group
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
validates :key, uniqueness: {
|
|
|
|
scope: :group_id,
|
|
|
|
message: "(%{value}) has already been taken"
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
scope :unprotected, -> { where(protected: false) }
|
|
|
|
end
|
|
|
|
end
|