mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-17 16:49:04 +00:00
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
8 lines
229 B
Go
8 lines
229 B
Go
package config
|
|
|
|
// IndexSettings represents indexing settings.
|
|
type IndexSettings struct {
|
|
Path string `json:"path" yaml:"Path"`
|
|
Convert bool `json:"convert" yaml:"Convert"`
|
|
Rescan bool `json:"rescan" yaml:"Rescan"`
|
|
}
|