mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
16 lines
410 B
Go
16 lines
410 B
Go
package media
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
// PreviewFileTypes lists MIME types eligible for preview generation.
|
|
var PreviewFileTypes = []string{fs.ImageJpeg.String(), fs.ImagePng.String()}
|
|
|
|
// PreviewExpr is a SQL expression containing allowed preview MIME types.
|
|
var PreviewExpr = gorm.Expr("'" + strings.Join(PreviewFileTypes, "','") + "'")
|