mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
Adds the new "--http-video-maxage SECONDS" config option. Signed-off-by: Michael Mayer <michael@photoprism.app>
13 lines
197 B
Go
13 lines
197 B
Go
package thumb
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCachePublic(t *testing.T) {
|
|
t.Run("Default", func(t *testing.T) {
|
|
assert.Equal(t, false, CachePublic)
|
|
})
|
|
}
|