Merge pull request #11 from arrkiin/dont_cache_auth
Prevent caching pages if user is authenticated
This commit is contained in:
commit
c0a7c9e3b1
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ func (c *Controller) RenderPage(ctx echo.Context, page Page) error {
|
|||
|
||||
// cachePage caches the HTML for a given Page if the Page has caching enabled
|
||||
func (c *Controller) cachePage(ctx echo.Context, page Page, html *bytes.Buffer) {
|
||||
if !page.Cache.Enabled {
|
||||
if !page.Cache.Enabled || page.IsAuth {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue