mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-14 05:52:43 +00:00
Enable caching on assets and avatars (#3376)
* Enable caching on assets and avatars Fixes #3323 * Only set avatar in user BeforeUpdate when there is no avatar set * add error checking after stat * gofmt * Change cache time for avatars to an hour
This commit is contained in:
parent
77f8bad2fb
commit
17655cdf1b
5 changed files with 155 additions and 34 deletions
|
@ -12,10 +12,5 @@ import (
|
|||
|
||||
// Static implements the macaron static handler for serving assets.
|
||||
func Static(opts *Options) macaron.Handler {
|
||||
return macaron.Static(
|
||||
opts.Directory,
|
||||
macaron.StaticOptions{
|
||||
SkipLogging: opts.SkipLogging,
|
||||
},
|
||||
)
|
||||
return opts.staticHandler(opts.Directory)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue