Closed csterling closed 4 years ago
Actions that currently use GET
method with a body:
download
: body specifies the archive type and the wai.annotations
arguments.list
: body specifies filtering of results.I will change both of these to use POST
instead, but as POST
is already reserved for the create
action on the non-detail URL for models, I will put this action on a new URL, ../MODEL/list
.
To be consistent, it would be good to use /create
, /list
and /download
as URLs. Then it's easy to tell from the URL what action is being carried out.
Implemented in:
Modify views to never use GET requests with bodies.