-
Support implicit model filtering on:
- Primary Key
- Foreign Keys for `belongs_to` relationships
Filtering will work as follows:
`GET /albums.json?ids=1,2,3,4` will return four `albums`
`GET /album…
-
Supporting comma delimited string will allow us to pass the parms to the serializer directly:
URL: `/api/v1/channels.json?includes=applications,domains,configurations`
`render json: ChannelSerialize…
-
Include a list of :includes in the meta data for the primary resource
-
@theirishpenguin @veedles
What do you think of the following project naming structure? Better than the current names?
restpack-core-service
restpack-core-client
restpack-user-service
restpack-resou…
-
As per http://jsonapi.org/, represent relationships in `links` format:
``` javascript
{
"links": {
"posts.author": {
"href": "http://example.com/people/{posts.author}",
"type": "peo…
-
I want to query a channel as follows:
```
/api/v1/channels/124857?includes=application,domain
```
and get back something like:
``` javascript
{
"id": 142857,
"name": "Developer Jobs Websites",
…