Open
Description
Hi there,
I'm trying to setup a route that will be able to receive a post request with an array (valid json) without having to name it. For example if I do
curl -XPOST -d '[{"foo": "baz"}, {"foo": "bar"}]' locahost:3000/foo
I want to be able to access this array of data. Is there any way I can do it ?