Hi Samuele, thanks for your answer. Do you have any idea whats the status of the mongodb adapter development?
> You will be able to do that using DAL with the mongodb adapter (once it > is finished); you get that error since Auth() expects a DAL object as > the second argument to constructor, in order to access the database; > instead, you are passing a pymongo.Collection object that Auth doesn't > know how to use.. > > For now, the two solutions I see are: > - temporarily use a sqlite database just to store users/auth stuff > - write a custom (maybe inheriting) "MongoAuth" object that acts like > Auth but uses mongodb collections to store data > > -- > Samuele ~redShadow~ Santi

