This commit is contained in:
Torsten 2023-02-03 17:27:42 +02:00
parent 56b1e6bca0
commit fc3e77102f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
class Member < ApplicationRecord
def self.default_scope
def self.public_scope
where.not(confirmed_at: nil).where.not(picture: nil)
end