(github: Octokit, doc: admin.firestore.DocumentSnapshot<BlockedUser>)
| 46 | ); |
| 47 | |
| 48 | async function performUnblock(github: Octokit, doc: admin.firestore.DocumentSnapshot<BlockedUser>) { |
| 49 | await github.orgs |
| 50 | .unblockUser({org: 'angular', username: doc.get('username')}) |
| 51 | .then(() => doc.ref.delete()); |
| 52 | } |
no test coverage detected