debian-mirror-gitlab/app/models/concerns/integrations/base_data_fields.rb

29 lines
723 B
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
2021-09-04 01:27:46 +05:30
module Integrations
module BaseDataFields
2020-04-22 19:07:51 +05:30
extend ActiveSupport::Concern
included do
2021-09-04 01:27:46 +05:30
# TODO: Once we rename the tables we can't rely on `table_name` anymore.
# https://gitlab.com/gitlab-org/gitlab/-/issues/331953
belongs_to :integration, inverse_of: self.table_name.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