mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-22 09:39:01 +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
235 B
Go
8 lines
235 B
Go
package config
|
|
|
|
// StackSettings represents settings for files that belong to the same photo.
|
|
type StackSettings struct {
|
|
UUID bool `json:"uuid" yaml:"UUID"`
|
|
Meta bool `json:"meta" yaml:"Meta"`
|
|
Name bool `json:"name" yaml:"Name"`
|
|
}
|