debian-mirror-gitlab/app/models/concerns/services/data_fields.rb

27 lines
580 B
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
module Services
module DataFields
extend ActiveSupport::Concern
included do
2021-06-08 01:23:25 +05:30
belongs_to :integration, inverse_of: self.name.underscore.to_sym, foreign_key: :service_id
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
delegate :activated?, to: :integration, allow_nil: true
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
validates :integration, presence: true
2020-04-22 19:07:51 +05:30
end
class_methods do
def encryption_options
{
key: Settings.attr_encrypted_db_key_base_32,
encode: true,
mode: :per_attribute_iv,
algorithm: 'aes-256-gcm'
}
end
end
end
end