Skip to content

Commit

Permalink
Merge pull request #3132 from sjoerdsmink/patch-1
Browse files Browse the repository at this point in the history
docs(controllers): change Cache-Control header to no-store
  • Loading branch information
kamilmysliwiec authored Nov 4, 2024
2 parents c07269c + 812eea8 commit e014e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ To specify a custom response header, you can either use a `@Header()` decorator

```typescript
@Post()
@Header('Cache-Control', 'none')
@Header('Cache-Control', 'no-store')
create() {
return 'This action adds a new cat';
}
Expand Down

0 comments on commit e014e7e

Please sign in to comment.