Fix scope

This commit is contained in:
prplecake 2022-09-29 15:49:55 -05:00 committed by Matty Jorgensen
parent ed9bbd1fc3
commit 06713f11f4
No known key found for this signature in database

View File

@ -53,7 +53,7 @@ class CustomEmoji < ApplicationRecord
scope :local, -> { where(domain: nil) }
scope :remote, -> { where.not(domain: nil) }
scope :enabled, -> { where(disabled: false) }
scope :remote_only, -> { where.not(domain: nil).where(category_id: nil) }
scope :remote_only, -> { where.not(domain: nil).where(category_id: nil).where(local_counterpart: { id: nil }) }
scope :alphabetic, -> { order(domain: :asc, shortcode: :asc) }
scope :by_domain_and_subdomains, ->(domain) { where(domain: domain).or(where(arel_table[:domain].matches("%.#{domain}"))) }
scope :listed, -> { local.enabled.where(visible_in_picker: true) }