Welcome to mirror list, hosted at ThFree Co, Russian Federation.

data_fields.rb « services « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd56af449bc88d0916883bf8dbd2e4a1bc3a6057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Services
  module DataFields
    extend ActiveSupport::Concern

    included do
      belongs_to :integration, inverse_of: self.name.underscore.to_sym, foreign_key: :service_id

      delegate :activated?, to: :integration, allow_nil: true

      validates :integration, presence: true
    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