diff --git a/packages/server/src/utils/notifications/build-error.ts b/packages/server/src/utils/notifications/build-error.ts index a46435051..08eef4df8 100644 --- a/packages/server/src/utils/notifications/build-error.ts +++ b/packages/server/src/utils/notifications/build-error.ts @@ -54,8 +54,17 @@ export const sendBuildErrorNotifications = async ({ }); for (const notification of notificationList) { - const { email, resend, discord, telegram, slack, gotify, ntfy, custom, lark } = - notification; + const { + email, + resend, + discord, + telegram, + slack, + gotify, + ntfy, + custom, + lark, + } = notification; try { if (email || resend) { const template = await renderAsync( diff --git a/packages/server/src/utils/notifications/build-success.ts b/packages/server/src/utils/notifications/build-success.ts index 92351130a..a30a00ccc 100644 --- a/packages/server/src/utils/notifications/build-success.ts +++ b/packages/server/src/utils/notifications/build-success.ts @@ -57,8 +57,17 @@ export const sendBuildSuccessNotifications = async ({ }); for (const notification of notificationList) { - const { email, resend, discord, telegram, slack, gotify, ntfy, custom, lark } = - notification; + const { + email, + resend, + discord, + telegram, + slack, + gotify, + ntfy, + custom, + lark, + } = notification; try { if (email || resend) { const template = await renderAsync( diff --git a/packages/server/src/utils/notifications/database-backup.ts b/packages/server/src/utils/notifications/database-backup.ts index 7bdd7cb8b..88f8f5f82 100644 --- a/packages/server/src/utils/notifications/database-backup.ts +++ b/packages/server/src/utils/notifications/database-backup.ts @@ -54,8 +54,17 @@ export const sendDatabaseBackupNotifications = async ({ }); for (const notification of notificationList) { - const { email, resend, discord, telegram, slack, gotify, ntfy, custom, lark } = - notification; + const { + email, + resend, + discord, + telegram, + slack, + gotify, + ntfy, + custom, + lark, + } = notification; try { if (email || resend) { const template = await renderAsync( diff --git a/packages/server/src/utils/notifications/docker-cleanup.ts b/packages/server/src/utils/notifications/docker-cleanup.ts index cfe11590d..40434ac73 100644 --- a/packages/server/src/utils/notifications/docker-cleanup.ts +++ b/packages/server/src/utils/notifications/docker-cleanup.ts @@ -41,8 +41,17 @@ export const sendDockerCleanupNotifications = async ( }); for (const notification of notificationList) { - const { email, resend, discord, telegram, slack, gotify, ntfy, custom, lark } = - notification; + const { + email, + resend, + discord, + telegram, + slack, + gotify, + ntfy, + custom, + lark, + } = notification; try { if (email || resend) { const template = await renderAsync( diff --git a/packages/server/src/utils/notifications/dokploy-restart.ts b/packages/server/src/utils/notifications/dokploy-restart.ts index 2e80edf55..9cb88e6d5 100644 --- a/packages/server/src/utils/notifications/dokploy-restart.ts +++ b/packages/server/src/utils/notifications/dokploy-restart.ts @@ -35,8 +35,17 @@ export const sendDokployRestartNotifications = async () => { }); for (const notification of notificationList) { - const { email, resend, discord, telegram, slack, gotify, ntfy, custom, lark } = - notification; + const { + email, + resend, + discord, + telegram, + slack, + gotify, + ntfy, + custom, + lark, + } = notification; try { if (email || resend) {