Modified default/empty hook and extension settings

This commit is contained in:
Miriam Shams-Rainey
2022-12-13 11:09:04 -05:00
parent d6dcec2dcb
commit f53c9ef62b
2 changed files with 2 additions and 2 deletions

View File

@@ -225,7 +225,7 @@ export function emptyExtensionObject(
): IExtension {
return {
name: `${type} extension`,
active: false,
active: true,
triggers: [],
type,
extensionBody: extensionBodyTemplate[type] ?? extensionBodyTemplate["task"],

View File

@@ -91,7 +91,7 @@ export function emptyWebhookObject(
): IWebhook {
return {
name: `${type} webhook`,
active: false,
active: true,
endpoint: generateId(),
type,
parser: webhookSchemas[type].parser?.template(table),