(
userCode: string
)
| 122 | } |
| 123 | |
| 124 | async findByUserCode( |
| 125 | userCode: string |
| 126 | ): Promise<AdapterPayload | undefined | void> { |
| 127 | const id = await client.get(userCodeKeyFor(userCode)); |
| 128 | return this.find(id); |
| 129 | } |
| 130 | |
| 131 | async destroy(id: string): Promise<undefined | void> { |
| 132 | const key = this.key(id); |
nothing calls this directly
no test coverage detected