18 lines
523 B
Ruby
18 lines
523 B
Ruby
|
class Account
|
||
|
|
||
|
# include MongoMapper::Document
|
||
|
|
||
|
## Attributes
|
||
|
# key :name
|
||
|
# key :locale
|
||
|
# timestamps!
|
||
|
|
||
|
# Include default devise modules. Others available are:
|
||
|
# :http_authenticatable, :token_authenticatable, :lockable, :timeoutable and :activatable
|
||
|
# devise :registerable, :authenticatable, :confirmable, :recoverable,
|
||
|
# :rememberable, :trackable, :validatable
|
||
|
|
||
|
# Setup accessible (or protected) attributes for your model
|
||
|
# attr_accessible :email, :password, :password_confirmation
|
||
|
end
|