()
| 188 | } |
| 189 | |
| 190 | getAllGists() { |
| 191 | return getAllItems( |
| 192 | Promise.resolve({ |
| 193 | accessToken: this.accessToken, |
| 194 | items: [], |
| 195 | url: `${this.baseUrl}/users/${this.user}/gists` |
| 196 | }), |
| 197 | this.followPaginate, |
| 198 | 'github' |
| 199 | ); |
| 200 | } |
| 201 | |
| 202 | getAllBranches() { |
| 203 | return getAllItems( |
no test coverage detected