diff --git a/web/src/lib/templates/workflow-templates.ts b/web/src/lib/templates/workflow-templates.ts index cd70f347bf..3e957cd68f 100644 --- a/web/src/lib/templates/workflow-templates.ts +++ b/web/src/lib/templates/workflow-templates.ts @@ -1,5 +1,5 @@ import { WorkflowTrigger, type WorkflowStepDto } from '@immich/sdk'; -import { mdiAccountGroupOutline, mdiMonitorScreenshot } from '@mdi/js'; +import { mdiMonitorScreenshot } from '@mdi/js'; export type WorkflowTemplate = { id: string; @@ -36,21 +36,4 @@ export const workflowTemplates: WorkflowTemplate[] = [ }, ], }, - { - id: '2', - name: 'Add person to album', - description: 'Add assets to an album when a specific person is recognized', - icon: mdiAccountGroupOutline, - trigger: WorkflowTrigger.PersonRecognized, - steps: [ - { - method: 'immich-plugin-core#filterPerson', - config: { personIds: [], matchAny: true }, - }, - { - method: 'immich-plugin-core#assetAddToAlbums', - config: { albumIds: [] }, - }, - ], - }, ];