* Access to unlike a package for a user in the cache. * @param packageName * @param usersDid
(packageName: string, usersDid: string)
| 254 | * @param usersDid |
| 255 | */ |
| 256 | async setUnlikeInCache(packageName: string, usersDid: string) { |
| 257 | await this.cache.set(CACHE_USER_LIKES_KEY(packageName, usersDid), false, CACHE_MAX_AGE) |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * At this point you should have checked if the user had a record for the package on the network and removed it before updating the cache |
no test coverage detected