({gmailCtrlId})
| 434 | } |
| 435 | |
| 436 | async cancelAuthorizeGmail({gmailCtrlId}) { |
| 437 | const gmailCtrl = await controllerPool.get(gmailCtrlId); |
| 438 | if (gmailCtrl) { |
| 439 | gmailCtrl.cancelAuthorization(); |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | async checkLicense({email}) { |
| 444 | return gmail.checkLicense({email}); |
nothing calls this directly
no test coverage detected