photoprism/internal/form/indexer_options.go
Michael Mayer 27ca260942 Indexing: Add "convert to jpeg" and "create thumbnails" options
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-11 04:12:54 +01:00

7 lines
170 B
Go

package form
type IndexerOptions struct {
SkipUnchanged bool `json:"skipUnchanged"`
CreateThumbs bool `json:"createThumbs"`
ConvertRaw bool `json:"convertRaw"`
}