-
{route}/
- GET =>
list()
- POST =>
create()
- GET =>
-
{route}/{lookup}/
- GET =>
retrieve()
- PUT =>
update()
- DELETE =>
destroy()
- GET =>
-
{route}/{method_name}/
- methods =>
@list_route(methods=['get']) method_name()
- methods =>
-
{route}/{lookup}/{method_name}/
- methods =>
@detail_route(methods=['get') method_name()
- methods =>