copy timeline here

This commit is contained in:
2023-06-18 11:23:46 +03:00
parent 818af2f5e9
commit def9e6083d
10 changed files with 126 additions and 10 deletions

View File

@ -4,6 +4,10 @@ class Member < ApplicationRecord
where.not(confirmed_at: nil).where.not(picture: nil)
end
def self.visible_scope
where.not(confirmed_at: nil).where.not(arriving: nil)
end
# Include default devise modules. Others available are:
# , :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,:confirmable,