()
| 119 | } |
| 120 | |
| 121 | removeCachedToken() { |
| 122 | const cache = readTokenCache(); |
| 123 | if (cache[this.openid]) { |
| 124 | delete cache[this.openid]; |
| 125 | writeTokenCache(cache); |
| 126 | } |
| 127 | this.token = ""; |
| 128 | this.memberId = ""; |
| 129 | this.customerNo = ""; |
| 130 | this.campaignId = ""; |
| 131 | } |
| 132 | |
| 133 | applyToken(data = {}) { |
| 134 | this.token = data.token || ""; |
no test coverage detected