chore: fix dependency events

This commit is contained in:
Mo
2023-08-07 15:58:46 -05:00
parent 3b531ce8bb
commit b731c73cb2
4 changed files with 51 additions and 84 deletions

View File

@@ -37,10 +37,6 @@ export class SubscriptionManager
protected override internalEventBus: InternalEventBusInterface,
) {
super(internalEventBus)
internalEventBus.addEventHandler(this, ApplicationEvent.UserRolesChanged)
internalEventBus.addEventHandler(this, ApplicationEvent.Launched)
internalEventBus.addEventHandler(this, ApplicationEvent.SignedIn)
}
async handleEvent(event: InternalEventInterface): Promise<void> {

View File

@@ -15,8 +15,6 @@ export class NotificationService
constructor(internalEventBus: InternalEventBusInterface) {
super(internalEventBus)
internalEventBus.addEventHandler(this, SyncEvent.ReceivedNotifications)
}
async handleEvent(event: InternalEventInterface): Promise<void> {