92e6c4fe1e
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)
20 lines
351 B
Go
20 lines
351 B
Go
package projection
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// Find returns the project matching the name.
|
|
func Find(name string) Type {
|
|
if name == "" {
|
|
return Unknown
|
|
}
|
|
|
|
// Find known type based on the normalized name.
|
|
if result, found := Types[clean.TypeLower(name)]; found {
|
|
return result
|
|
}
|
|
|
|
// Default.
|
|
return Other
|
|
}
|