mirror of
https://github.com/immich-app/immich.git
synced 2025-12-15 09:13:11 +03:00
feat(server/web) Add manual job trigger mechanism to the web (#767)
This commit is contained in:
@@ -64,6 +64,12 @@ String parameterToString(dynamic value) {
|
||||
if (value is DeviceTypeEnum) {
|
||||
return DeviceTypeEnumTypeTransformer().encode(value).toString();
|
||||
}
|
||||
if (value is JobCommand) {
|
||||
return JobCommandTypeTransformer().encode(value).toString();
|
||||
}
|
||||
if (value is JobId) {
|
||||
return JobIdTypeTransformer().encode(value).toString();
|
||||
}
|
||||
if (value is ThumbnailFormat) {
|
||||
return ThumbnailFormatTypeTransformer().encode(value).toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user