Custom cache key
1 unresolved thread
1 unresolved thread
Adds a cacheKey option to the BaseRequestOptions
which is passed to createCacheKey
. Tests updated too.
Merge request reports
Activity
Filter activity
added 1 commit
- 371f8e28 - Add changeset, ignore Drupal directory in tsconfig
109 110 static createCacheKey({ 110 111 localeSegment, 111 112 path, 113 cacheKey, 112 114 }: { 113 115 localeSegment?: string; 114 path: string; 116 path?: string; 117 cacheKey?: string; 115 118 }) { 119 if (cacheKey) { 120 return cacheKey; 121 } 122 123 if (!path) { enabled an automatic merge when the pipeline for 371f8e28 succeeds
Please register or sign in to reply