I am confused about RoR's handling of REST lists.
The Rails 3 routes magic creates (among others)
POST /items create one item
GET /items list all items
Now, I want to have exactly this PLUS the possibility to POST a list of items (in XML).
What's the best way to do it?
Semantically, POST /items to me sounds about creating a list, not a single item
Can I 'overload' this in the controller?
Or do I need to create a new routing?
Thanks