Open
Description
There is wrong ordering of routes.
For example - there is ordering in the resource I've set:
GET users/
GET users/:id
POST users/
POST users/:id/restore
PUT users/:id
DELETE users/:id
But grape-swagger is generating it like this:
GET users/
POST users/
DELETE users/:id
GET users/:id
PUT users/:id
POST users/:id/restore
The fix from #859 doesn't fix it completely. The order is still not the same as it was "declared"
Metadata
Metadata
Assignees
Labels
No labels