perf(api): remove no-transform cache-control from response header

Closes: #2091
This commit is contained in:
Gauthier Roebroeck 2025-10-03 12:00:48 +08:00
parent eb8bdfc94c
commit 43c1018e3e

View file

@ -21,7 +21,6 @@ fun ResponseEntity.BodyBuilder.setCachePrivate() = this.cacheControl(cachePrivat
val cachePrivate = val cachePrivate =
CacheControl CacheControl
.maxAge(0, TimeUnit.SECONDS) .maxAge(0, TimeUnit.SECONDS)
.noTransform()
.cachePrivate() .cachePrivate()
.mustRevalidate() .mustRevalidate()