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: 10963e4e7d8a603ad1f6f8fd2bffdd6e0f1e283a (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 :service

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

      validates :service, 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