So anyone can see the needed server API. Like the URL Conventions on Ember Guide, but depended on the entered model.
For the initial example on the page:
| Action |
HTTP Verb |
URL |
| Find |
GET |
/posts/1 |
| Find All |
GET |
/posts |
| Update |
PUT |
/posts/1 |
| Create |
POST |
/posts/ |
| Delete |
DELETE |
/posts/1 |
| Find |
GET |
/authors/1 |
| Find All |
GET |
/authors |
| Update |
PUT |
/authors/1 |
| Create |
POST |
/authors/ |
| Delete |
DELETE |
/authors/1 |
Thanks
So anyone can see the needed server API. Like the URL Conventions on Ember Guide, but depended on the entered model.
For the initial example on the page:
Thanks