0
0
Fork 0

Add instance search feature (#4925)

This commit is contained in:
nullkal 2017-09-13 19:30:07 +09:00 committed by Eugen Rochko
parent 9e2ff3ef71
commit da77f65c46
4 changed files with 50 additions and 1 deletions

View file

@ -104,6 +104,7 @@ class Account < ApplicationRecord
scope :by_domain_accounts, -> { group(:domain).select(:domain, 'COUNT(*) AS accounts_count').order('accounts_count desc') }
scope :matches_username, ->(value) { where(arel_table[:username].matches("#{value}%")) }
scope :matches_display_name, ->(value) { where(arel_table[:display_name].matches("#{value}%")) }
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
delegate :email,
:current_sign_in_ip,