We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cea055 commit 3859616Copy full SHA for 3859616
lib/resources/project.js
@@ -37,6 +37,10 @@ Project.prototype.getByPath = function (params, callback) {
37
this.client.request('get', '/project', params, callback);
38
};
39
40
+Project.prototype.get = function (params, callback) {
41
+ this.client.request('get', '/projects/:id', params, callback);
42
+};
43
+
44
Project.prototype.search = function (params, callback) {
45
this.client.request('get', '/projects/search/:query', params, callback);
46
@@ -63,4 +67,4 @@ Project.prototype.updateLabel = function(params, callback) {
63
67
64
68
Project.prototype.deleteLabel = function(params, callback) {
65
69
this.client.request('delete', this.onePath + '/labels', params, callback);
66
-};
70
0 commit comments