()
| 200 | } |
| 201 | |
| 202 | getAllBranches() { |
| 203 | return getAllItems( |
| 204 | Promise.resolve({ |
| 205 | accessToken: this.accessToken, |
| 206 | items: [], |
| 207 | url: `${this.baseUrl}/repos/${getRepo().fullName}/branches` |
| 208 | }), |
| 209 | this.followPaginate, |
| 210 | 'github' |
| 211 | ); |
| 212 | } |
| 213 | |
| 214 | getCode() { |
| 215 | let code; |
nothing calls this directly
no test coverage detected