Autofix Rubocop Rails/WhereEquals (#23759)
This commit is contained in:
		
							parent
							
								
									d3b4d4d4f3
								
							
						
					
					
						commit
						9909b4b653
					
				@ -1916,13 +1916,6 @@ Rails/UnusedIgnoredColumns:
 | 
				
			|||||||
    - 'app/models/status_edit.rb'
 | 
					    - 'app/models/status_edit.rb'
 | 
				
			||||||
    - 'app/models/user.rb'
 | 
					    - 'app/models/user.rb'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Offense count: 2
 | 
					 | 
				
			||||||
# This cop supports unsafe autocorrection (--autocorrect-all).
 | 
					 | 
				
			||||||
Rails/WhereEquals:
 | 
					 | 
				
			||||||
  Exclude:
 | 
					 | 
				
			||||||
    - 'app/models/announcement.rb'
 | 
					 | 
				
			||||||
    - 'app/models/status.rb'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Offense count: 61
 | 
					# Offense count: 61
 | 
				
			||||||
# This cop supports unsafe autocorrection (--autocorrect-all).
 | 
					# This cop supports unsafe autocorrection (--autocorrect-all).
 | 
				
			||||||
# Configuration parameters: EnforcedStyle.
 | 
					# Configuration parameters: EnforcedStyle.
 | 
				
			||||||
 | 
				
			|||||||
@ -20,7 +20,7 @@
 | 
				
			|||||||
class Announcement < ApplicationRecord
 | 
					class Announcement < ApplicationRecord
 | 
				
			||||||
  scope :unpublished, -> { where(published: false) }
 | 
					  scope :unpublished, -> { where(published: false) }
 | 
				
			||||||
  scope :published, -> { where(published: true) }
 | 
					  scope :published, -> { where(published: true) }
 | 
				
			||||||
  scope :without_muted, ->(account) { joins("LEFT OUTER JOIN announcement_mutes ON announcement_mutes.announcement_id = announcements.id AND announcement_mutes.account_id = #{account.id}").where('announcement_mutes.id IS NULL') }
 | 
					  scope :without_muted, ->(account) { joins("LEFT OUTER JOIN announcement_mutes ON announcement_mutes.announcement_id = announcements.id AND announcement_mutes.account_id = #{account.id}").where(announcement_mutes: { id: nil }) }
 | 
				
			||||||
  scope :chronological, -> { order(Arel.sql('COALESCE(announcements.starts_at, announcements.scheduled_at, announcements.published_at, announcements.created_at) ASC')) }
 | 
					  scope :chronological, -> { order(Arel.sql('COALESCE(announcements.starts_at, announcements.scheduled_at, announcements.published_at, announcements.created_at) ASC')) }
 | 
				
			||||||
  scope :reverse_chronological, -> { order(Arel.sql('COALESCE(announcements.starts_at, announcements.scheduled_at, announcements.published_at, announcements.created_at) DESC')) }
 | 
					  scope :reverse_chronological, -> { order(Arel.sql('COALESCE(announcements.starts_at, announcements.scheduled_at, announcements.published_at, announcements.created_at) DESC')) }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -95,7 +95,7 @@ class Status < ApplicationRecord
 | 
				
			|||||||
  scope :local,  -> { where(local: true).or(where(uri: nil)) }
 | 
					  scope :local,  -> { where(local: true).or(where(uri: nil)) }
 | 
				
			||||||
  scope :with_accounts, ->(ids) { where(id: ids).includes(:account) }
 | 
					  scope :with_accounts, ->(ids) { where(id: ids).includes(:account) }
 | 
				
			||||||
  scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
 | 
					  scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
 | 
				
			||||||
  scope :without_reblogs, -> { where('statuses.reblog_of_id IS NULL') }
 | 
					  scope :without_reblogs, -> { where(statuses: { reblog_of_id: nil }) }
 | 
				
			||||||
  scope :with_public_visibility, -> { where(visibility: :public) }
 | 
					  scope :with_public_visibility, -> { where(visibility: :public) }
 | 
				
			||||||
  scope :tagged_with, ->(tag_ids) { joins(:statuses_tags).where(statuses_tags: { tag_id: tag_ids }) }
 | 
					  scope :tagged_with, ->(tag_ids) { joins(:statuses_tags).where(statuses_tags: { tag_id: tag_ids }) }
 | 
				
			||||||
  scope :excluding_silenced_accounts, -> { left_outer_joins(:account).where(accounts: { silenced_at: nil }) }
 | 
					  scope :excluding_silenced_accounts, -> { left_outer_joins(:account).where(accounts: { silenced_at: nil }) }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user