debian-mirror-gitlab/app/models/ci/variable.rb

23 lines
490 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2015-09-25 12:07:36 +05:30
module Ci
2019-07-07 11:18:12 +05:30
class Variable < ApplicationRecord
2018-03-17 18:26:18 +05:30
extend Gitlab::Ci::Model
2020-04-22 19:07:51 +05:30
include Ci::HasVariable
2017-09-10 17:25:29 +05:30
include Presentable
2020-04-22 19:07:51 +05:30
include Ci::Maskable
2019-10-12 21:52:04 +05:30
prepend HasEnvironmentScope
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
2018-05-09 12:01:36 +05:30
alias_attribute :secret_value, :value
2018-03-27 19:54:05 +05:30
validates :key, uniqueness: {
scope: [:project_id, :environment_scope],
message: "(%{value}) has already been taken"
}
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