List repos of a user
GET /repos?user_id=zzarcon
{
"repos": [
{
"id": 1,
"name": "Focusable",
"description": "Set a spotlight focus on DOM element adding a overlay layer to the rest of the page",
"total_stars": 1000,
"new_stars": 5,
"last_time_checked": "01/08/2015 10:10:10"
},
{
"id": 2,
"name": "CADRACSwippableCell",
"description": "Swippable CollectionView cells made with Reactive Cocoa",
"total_stars": 150,
"new_stars": 50,
"last_time_checked": "01/08/2015 10:10:10"
},
]
}
Watch a repo
POST /repos/:repo_id
Unwatch a repo
DELETE /repos/:repo_id
List repos of a user
GET/repos?user_id=zzarcon{ "repos": [ { "id": 1, "name": "Focusable", "description": "Set a spotlight focus on DOM element adding a overlay layer to the rest of the page", "total_stars": 1000, "new_stars": 5, "last_time_checked": "01/08/2015 10:10:10" }, { "id": 2, "name": "CADRACSwippableCell", "description": "Swippable CollectionView cells made with Reactive Cocoa", "total_stars": 150, "new_stars": 50, "last_time_checked": "01/08/2015 10:10:10" }, ] }Watch a repo
POST/repos/:repo_id{ "status": "ok" }{ "status": "fail" }Unwatch a repo
DELETE/repos/:repo_id{ "status": "ok" }{ "status": "fail" }