Class: MmUser

Inherits:
Object
  • Object
show all
Includes:
MongoMapper::Document
Defined in:
lib/models/mongomapper_user.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args) ⇒ Object (protected)



39
40
41
# File 'lib/models/mongomapper_user.rb', line 39

def method_missing(m, *args)
  return false
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



14
15
16
# File 'lib/models/mongomapper_user.rb', line 14

def password
  @password
end

#password_confirmationObject

Returns the value of attribute password_confirmation.



14
15
16
# File 'lib/models/mongomapper_user.rb', line 14

def password_confirmation
  @password_confirmation
end

Instance Method Details

#admin?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/models/mongomapper_user.rb', line 29

def admin?
  self.permission_level == -1 || self.id == 1
end

#site_admin?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/models/mongomapper_user.rb', line 33

def site_admin?
  self.id == 1
end