Created
November 19, 2018 14:38
-
-
Save andre-f-paggi/cb8ba67508e58efe617cf8b86fdb5cc0 to your computer and use it in GitHub Desktop.
Front end REST Url Route Scheme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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