feat: add scheduler events to ui

This commit is contained in:
Nybkox
2025-01-02 14:38:01 +01:00
parent 903297a1e9
commit 891fb15290
5 changed files with 80 additions and 6 deletions

View File

@@ -173,6 +173,13 @@ export function getSupportedScriptTemplates(objectTypeField: string): { label: s
scriptTemplate: 'CREATE OBJECT',
},
];
case 'schedulerEvents':
return [
{
label: 'CREATE SCHEDULER EVENT',
scriptTemplate: 'CREATE OBJECT',
},
];
}
return [];