* List the users who are members of the company * @see https://developer.github.com/v3/orgs/members/#members-list * @param {object} options - filtering options * @param {string} [options.filter=all] - can be either `2fa_disabled` or `all` * @param {string} [options.role=all] - can be
(options, cb)
| 65 | * @return {Promise} - the promise for the http request |
| 66 | */ |
| 67 | listMembers(options, cb) { |
| 68 | return this._request('GET', `/orgs/${this.__name}/members`, options, cb); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * List the Teams in the Organization |