--
You received this message because you are subscribed to the Google Groups "ReactiveMongo - http://reactivemongo.org" group.
To unsubscribe from this group and stop receiving emails from it, send an email to reactivemong...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Thank you very much . Saved me a lot of effort and time which could have gone in vain :-)
Hi,I am not sure why would you forgo with play. It is really straight forward using angular + play + reactive mongo. Only thing we needed to do is to transform the id <-> _id / $oid. Then just some validators on create and update of mongo docs.
// json transformers so mongo specific stuff is not given to the front end
val mongoToFE = (
(__.json.update((__ \ 'id).json.copyFrom((__ \ '_id \ '$oid).json.pick))) andThen
(__ \ '_id).json.prune andThen
stripCreatedAndModified
)