ember-data-model-maker
ember-data-model-maker copied to clipboard
Please add a "expected REST-API" Section too
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
@rganz could you try sending a PR so we can iterate on it?