Skip to content

Instantly share code, notes, and snippets.

@andre-f-paggi
Created November 19, 2018 14:38
Show Gist options
  • Save andre-f-paggi/cb8ba67508e58efe617cf8b86fdb5cc0 to your computer and use it in GitHub Desktop.
Save andre-f-paggi/cb8ba67508e58efe617cf8b86fdb5cc0 to your computer and use it in GitHub Desktop.
Front end REST Url Route Scheme
Link: https://stackoverflow.com/a/26010029
/items/ - this is for listing items
/items/{id:[0-9]{1,4}} - this is for displaying one item in detail
/items/add - for displaying new item form
/items/:id/edit - for displaying existing item in Form for editing
/items/:id/delete - **This is not required, I mean you just hit the API when
use clicks delete, we cant show any deletion form**
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment