(userCode: string)
| 71 | } |
| 72 | |
| 73 | findByUserCode(userCode: string) { |
| 74 | const id = storage.get(userCodeKeyFor(userCode)) as string; |
| 75 | return this.find(id); |
| 76 | } |
| 77 | |
| 78 | upsert(id: string, payload: AdapterPayload, expiresIn: number) { |
| 79 | const key = this.key(id); |
no test coverage detected