* Create a repository in an organization * @see https://developer.github.com/v3/repos/#create * @param {Object} options - the repository definition * @param {Requestable.callback} [cb] - will receive the created repository * @return {Promise} - the promise for the http request
(options, cb)
| 30 | * @return {Promise} - the promise for the http request |
| 31 | */ |
| 32 | createRepo(options, cb) { |
| 33 | return this._request('POST', `/orgs/${this.__name}/repos`, options, cb); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * List the repositories in an organization |