Hey, very nice feature which integrates quite nicely with angularJS, great job. I have 2 small FR that i'll break down.
Can we have the list of articles but without the content, images, ?
so basically have this json output, the rationale behind is that if you have a lot of articles and just want to provide menu points it might be easier without the content
{
"status": "ok",
"total": 3,
"limit": 3,
"offset": 0,
"pages_current": 1,
"pages_total": 1,
"articles": [
{
"id": "1",
"title": "title",
"alias": "alias",
"featured": "0",
"category_title": "cattitle",
"author": "Super User",
"published_date": "date"
},
{
"id": "2",
"title": "title",
"alias": "alias",
"featured": "0",
"category_title": "cattitle",
"author": "Super User",
"published_date": "date"
}
]
}