about summary refs log tree commit diff
path: root/app/models/email_domain_block.rb
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-03-31 09:07:22 -0400
committerGitHub <noreply@github.com>2023-03-31 15:07:22 +0200
commitcb2ce842b0626b3ae379017da4cbab20539b782a (patch)
tree4fbf57a66ada2663f38c38741d97ac12f99ebb79 /app/models/email_domain_block.rb
parent7646ad8a2b7d0809657a4f2a228443b4c992d070 (diff)
Autofix Rubocop Rails/IgnoredColumnsAssignment (#23761)
Diffstat (limited to 'app/models/email_domain_block.rb')
-rw-r--r--app/models/email_domain_block.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/email_domain_block.rb b/app/models/email_domain_block.rb
index 276e7d31a..3c9be51ca 100644
--- a/app/models/email_domain_block.rb
+++ b/app/models/email_domain_block.rb
@@ -12,7 +12,7 @@
 #
 
 class EmailDomainBlock < ApplicationRecord
-  self.ignored_columns = %w(
+  self.ignored_columns += %w(
     ips
     last_refresh_at
   )