Skip to content

Commit 9f85544

Browse files
committed
added user(s) ressource
1 parent 3d2c72f commit 9f85544

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/gitlab.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ var Project = require('./project');
1717
var Member = require('./member');
1818
var Hook = require('./hook');
1919
var Issue = require('./issue');
20+
var User = require('./user');
2021

2122
/**
2223
* Create a gitlab API client.
@@ -34,6 +35,7 @@ function Client(options) {
3435
this.members = new Member(this);
3536
this.hooks = new Hook(this);
3637
this.issues = new Issue(this);
38+
this.users = new User(this);
3739
}
3840

3941
Client.prototype.request = function (method, pathname, data, callback) {
@@ -96,4 +98,4 @@ Client.prototype.request = function (method, pathname, data, callback) {
9698

9799
exports.create = function (options) {
98100
return new Client(options);
99-
};
101+
};

0 commit comments

Comments
 (0)