2015-09-25 12:07:36 +05:30
|
|
|
module Ci
|
|
|
|
class Variable < ActiveRecord::Base
|
|
|
|
extend Ci::Model
|
2017-09-10 17:25:29 +05:30
|
|
|
include HasVariable
|
|
|
|
include Presentable
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
belongs_to :project
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
validates :key, uniqueness: { scope: [:project_id, :environment_scope] }
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
scope :unprotected, -> { where(protected: false) }
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|