97c9962053
Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
265 B
Go
12 lines
265 B
Go
package media
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
var PreviewFileTypes = []string{fs.ImageJPEG.String(), fs.ImagePNG.String()}
|
|
var PreviewExpr = gorm.Expr("'" + strings.Join(PreviewFileTypes, "','") + "'")
|