Bit of a lazyweb question here: anybody know how django-piston handles writes (create/update) to ManyToMany fields?
Asked
Active
Viewed 403 times
1 Answers
1
It doesn't handle that. You need to explicitly override the "update" method for that.

Jesper Noehr
- 84
- 1
-
Thanks Jesper. Any suggestions for how to handle it, particularly with create? I'm looking for a nice pattern around separating the creation of the main object from the creation of the related objects? – Parand Nov 20 '09 at 00:40