photoprism/internal/thumb/cache_test.go
Michael Mayer a287830d1f Videos: Allow setting a lower TTL for caching video content #3631
Adds the new "--http-video-maxage SECONDS" config option.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-08-15 11:06:43 +02:00

14 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)
})
}