Remove NotificationSettings table (#5036

* helper

* Add script to move notification settings

* wip, removal of NotificationSettings

* event name

* iteration

* test

* test

* Remove last of NotificationSettings model

* refactor

* More fixes

* snapshots

* Change emails to class instances for type safety

* test

* docs

* Update migration for self-hosted

* tsc
This commit is contained in:
Tom Moor
2023-03-18 09:32:41 -04:00
committed by GitHub
parent 41f97b0563
commit 45831e9469
58 changed files with 972 additions and 711 deletions

View File

@@ -647,11 +647,11 @@ export default class DeliverWebhookTask extends BaseTask<Props> {
]);
if (createdBy && team) {
await WebhookDisabledEmail.schedule({
await new WebhookDisabledEmail({
to: createdBy.email,
teamUrl: team.url,
webhookName: subscription.name,
});
}).schedule();
}
}
}