Autofix Rubocop remaining Layout rules (#23679)
This commit is contained in:
parent
d2dcb6c45a
commit
717683d1c3
117 changed files with 265 additions and 261 deletions
|
@ -2,6 +2,7 @@ class MigrateOpenRegistrationsSetting < ActiveRecord::Migration[5.2]
|
|||
def up
|
||||
open_registrations = Setting.find_by(var: 'open_registrations')
|
||||
return if open_registrations.nil? || open_registrations.value
|
||||
|
||||
setting = Setting.where(var: 'registrations_mode').first_or_initialize(var: 'registrations_mode')
|
||||
setting.update(value: 'none')
|
||||
end
|
||||
|
@ -9,6 +10,7 @@ class MigrateOpenRegistrationsSetting < ActiveRecord::Migration[5.2]
|
|||
def down
|
||||
registrations_mode = Setting.find_by(var: 'registrations_mode')
|
||||
return if registrations_mode.nil?
|
||||
|
||||
setting = Setting.where(var: 'open_registrations').first_or_initialize(var: 'open_registrations')
|
||||
setting.update(value: registrations_mode.value == 'open')
|
||||
end
|
||||
|
|
|
@ -8,6 +8,7 @@ class PreserveOldLayoutForExistingUsers < ActiveRecord::Migration[5.2]
|
|||
|
||||
User.where(User.arel_table[:current_sign_in_at].gteq(1.month.ago)).find_each do |user|
|
||||
next if Setting.unscoped.where(thing_type: 'User', thing_id: user.id, var: 'advanced_layout').exists?
|
||||
|
||||
user.settings.advanced_layout = true
|
||||
end
|
||||
end
|
||||
|
|
|
@ -11,6 +11,7 @@ class AddCaseInsensitiveBtreeIndexToTags < ActiveRecord::Migration[5.2]
|
|||
rescue ActiveRecord::StatementInvalid => e
|
||||
remove_index :tags, name: 'index_tags_on_name_lower_btree'
|
||||
raise CorruptionError, 'index_tags_on_name_lower_btree' if e.is_a?(ActiveRecord::RecordNotUnique)
|
||||
|
||||
raise e
|
||||
end
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
||||
|
||||
class AddActionToCustomFilters < ActiveRecord::Migration[6.1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue