app/models/account.rb
ca631758
 class Account
 	include Mongoid::Document
 
     field :jid, type: String
     field :pass, type: String
d33f6448
     field :conversation_settings, type: Array, default: []
ca631758
 
     embedded_in :user
 end