Module: Lobby::AuthUser::ClassMethods

Defined in:
app/models/lobby/auth_user.rb

Instance Method Summary collapse

Instance Method Details

#confirmedObject



17
18
19
# File 'app/models/lobby/auth_user.rb', line 17

def confirmed
  where("confirmed IS NOT NULL")
end

#with_email(email) ⇒ Object



21
22
23
# File 'app/models/lobby/auth_user.rb', line 21

def with_email(email)
  where(:email => email)
end