This commit is contained in:
2016-05-29 01:33:22 -04:00
parent 4079ee8208
commit 42ea77720a
2 changed files with 15 additions and 4 deletions

View File

@ -94,6 +94,17 @@ api = function(key){
});
};
this.tagsList = function(callback){
var options = {
url: this.BASEURL+'tags',
headers: this.headers
};
return request.get(options, function(e,r,b){
callback(b,r,e);
});
};
return this;
}