mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat: tag cleanup job (#12654)
This commit is contained in:
parent
4a1ff6abce
commit
b74b20824a
23 changed files with 476 additions and 10 deletions
|
|
@ -60,6 +60,9 @@ export enum JobName {
|
|||
STORAGE_TEMPLATE_MIGRATION = 'storage-template-migration',
|
||||
STORAGE_TEMPLATE_MIGRATION_SINGLE = 'storage-template-migration-single',
|
||||
|
||||
// tags
|
||||
TAG_CLEANUP = 'tag-cleanup',
|
||||
|
||||
// migration
|
||||
QUEUE_MIGRATION = 'queue-migration',
|
||||
MIGRATE_ASSET = 'migrate-asset',
|
||||
|
|
@ -262,6 +265,9 @@ export type JobItem =
|
|||
| { name: JobName.CLEAN_OLD_AUDIT_LOGS; data?: IBaseJob }
|
||||
| { name: JobName.CLEAN_OLD_SESSION_TOKENS; data?: IBaseJob }
|
||||
|
||||
// Tags
|
||||
| { name: JobName.TAG_CLEANUP; data?: IBaseJob }
|
||||
|
||||
// Asset Deletion
|
||||
| { name: JobName.PERSON_CLEANUP; data?: IBaseJob }
|
||||
| { name: JobName.ASSET_DELETION; data: IAssetDeleteJob }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue