mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 17:25:35 +03:00
18 lines
387 B
TypeScript
18 lines
387 B
TypeScript
import { PluginContext, PluginTriggerType } from 'src/enum';
|
|
|
|
export type PluginTrigger = {
|
|
type: PluginTriggerType;
|
|
contextType: PluginContext;
|
|
};
|
|
|
|
export const pluginTriggers: PluginTrigger[] = [
|
|
{
|
|
type: PluginTriggerType.AssetCreate,
|
|
contextType: PluginContext.Asset,
|
|
},
|
|
{
|
|
type: PluginTriggerType.PersonRecognized,
|
|
contextType: PluginContext.Person,
|
|
},
|
|
];
|