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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/project_setting.rb')
-rw-r--r--app/models/project_setting.rb27
1 files changed, 12 insertions, 15 deletions
diff --git a/app/models/project_setting.rb b/app/models/project_setting.rb
index fec951eb7fe..69d1a9f4aeb 100644
--- a/app/models/project_setting.rb
+++ b/app/models/project_setting.rb
@@ -3,28 +3,25 @@
class ProjectSetting < ApplicationRecord
include ::Gitlab::Utils::StrongMemoize
include EachBatch
+ include IgnorableColumns
- ALLOWED_TARGET_PLATFORMS = %w(ios osx tvos watchos android).freeze
+ ALLOWED_TARGET_PLATFORMS = %w[ios osx tvos watchos android].freeze
belongs_to :project, inverse_of: :project_setting
scope :for_projects, ->(projects) { where(project_id: projects) }
- attr_encrypted :cube_api_key,
- mode: :per_attribute_iv,
- key: Settings.attr_encrypted_db_key_base_32,
- algorithm: 'aes-256-gcm',
- encode: false,
- encode_iv: false
+ ignore_columns %i[
+ encrypted_product_analytics_clickhouse_connection_string
+ encrypted_product_analytics_clickhouse_connection_string_iv
+ encrypted_jitsu_administrator_password
+ encrypted_jitsu_administrator_password_iv
+ jitsu_host
+ jitsu_project_xid
+ jitsu_administrator_email
+ ], remove_with: '16.5', remove_after: '2023-09-22'
- attr_encrypted :jitsu_administrator_password,
- mode: :per_attribute_iv,
- key: Settings.attr_encrypted_db_key_base_32,
- algorithm: 'aes-256-gcm',
- encode: false,
- encode_iv: false
-
- attr_encrypted :product_analytics_clickhouse_connection_string,
+ attr_encrypted :cube_api_key,
mode: :per_attribute_iv,
key: Settings.attr_encrypted_db_key_base_32,
algorithm: 'aes-256-gcm',