photoprism/internal/photoprism/actions.go
Michael Mayer dcffa2848a API: Add action and user context to indexing events #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-03-11 14:09:00 +01:00

11 lines
204 B
Go

package photoprism
const (
ActionIndex = "index"
ActionAutoIndex = "autoindex"
ActionImport = "import"
ActionAutoImport = "autoimport"
ActionUpload = "upload"
ActionUnknown = ""
)