flatiron / restful

reflect RESTful Director routers from Resourceful resources
237 stars 48 forks source link

Missing param merging / query string parsing logic #38

Open indexzero opened 11 years ago

indexzero commented 11 years ago

(Purposeful duplicate of #12)

Currently, restful doesn't respect any incoming URL query string parameters. ( Everything so far has been done via req body ).

We should use https://github.com/visionmedia/node-querystring/ to parse incoming query strings.

The parsed query string params should be intelligently merged with any req.body data into a common params scope.