(repo, github)
| 10 | } |
| 11 | |
| 12 | export function deleteRepo(repo, github) { |
| 13 | return github |
| 14 | .getRepo(repo.owner.login, repo.name) |
| 15 | .deleteRepo() |
| 16 | .then((removed) => { |
| 17 | if (removed) { |
| 18 | console.log(repo.full_name, 'deleted'); // eslint-disable-line |
| 19 | } |
| 20 | }); |
| 21 | } |
| 22 | |
| 23 | export function deleteTeam(team, github) { |
| 24 | return github |
nothing calls this directly
no test coverage detected
searching dependent graphs…