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

23 lines
570 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
module Ci
class Variable < ActiveRecord::Base
extend Ci::Model
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
validates :key,
presence: true,
2017-08-17 22:00:37 +05:30
uniqueness: { scope: :project_id },
length: { maximum: 255 },
format: { with: /\A[a-zA-Z0-9_]+\z/,
message: "can contain only letters, digits and '_'." }
2015-09-25 12:07:36 +05:30
2016-09-29 09:46:39 +05:30
scope :order_key_asc, -> { reorder(key: :asc) }
attr_encrypted :value,
mode: :per_attribute_iv_and_salt,
2016-08-24 12:49:21 +05:30
insecure_mode: true,
key: Gitlab::Application.secrets.db_key_base,
algorithm: 'aes-256-cbc'
2015-09-25 12:07:36 +05:30
end
end