(token)
| 2089 | })); |
| 2090 | }, |
| 2091 | async getTokenCode(token) { |
| 2092 | return normalizeLuckmailTokenCode(await request( |
| 2093 | 'GET', |
| 2094 | `/api/v1/openapi/email/token/${encodeURIComponent(token)}/code` |
| 2095 | )); |
| 2096 | }, |
| 2097 | async checkTokenAlive(token) { |
| 2098 | const data = await request( |
| 2099 | 'GET', |
nothing calls this directly
no test coverage detected