mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:24:05 -06:00
commit
ff6755f1e5
@ -88,7 +88,7 @@ class User < ActiveRecord::Base
|
||||
scope :blocked, -> { where(blocked: true) } # no index
|
||||
scope :not_blocked, -> { where(blocked: false) } # no index
|
||||
scope :suspended, -> { where('suspended_till IS NOT NULL AND suspended_till > ?', Time.zone.now) } # no index
|
||||
scope :not_suspended, -> { where('suspended_till IS NULL') }
|
||||
scope :not_suspended, -> { where('suspended_till IS NULL OR suspended_till <= ?', Time.zone.now) }
|
||||
# excluding fake users like the community user
|
||||
scope :real, -> { where('id > 0') }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user