Skip to content

Commit

Permalink
fix: frontend api should use cache-control strategy 'no-cache' (#5641)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarconr committed Dec 14, 2023
1 parent 29bd636 commit e6442d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/routes/proxy-api/index.ts
Expand Up @@ -190,7 +190,7 @@ export default class ProxyController extends Controller {
ProxyController.createContext(req),
);

res.set('Cache-control', 'public, max-age=2');
res.set('Cache-control', 'no-cache');

this.services.openApiService.respondWithValidation(
200,
Expand Down

0 comments on commit e6442d9

Please sign in to comment.