waikato-ufdl / ufdl-backend

User-Friendly Deep Learning (UFDL) - backend system.
Apache License 2.0
1 stars 0 forks source link

No GET bodies #62

Closed csterling closed 4 years ago

csterling commented 4 years ago

Modify views to never use GET requests with bodies.

csterling commented 4 years ago

Actions that currently use GET method with a body:

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.

fracpete commented 4 years ago

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.

csterling commented 4 years ago

Implemented in: