From: David ‘Bombe’ Roden Date: Mon, 9 Dec 2019 20:02:12 +0000 (+0100) Subject: ✨ Add all other handlers to notification handler X-Git-Tag: v81^2~5^2~76 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=80f4933efb94b9fee5536a992d382360bcbd92d1 ✨ Add all other handlers to notification handler --- diff --git a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt index d2ae085..cc434d2 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt @@ -26,5 +26,7 @@ import javax.inject.* @Suppress("UNUSED_PARAMETER") class NotificationHandler @Inject constructor( markPostKnownDuringFirstStartHandler: MarkPostKnownDuringFirstStartHandler, - newRemotePostHandler: NewRemotePostHandler + newSoneHandler: NewSoneHandler, + newRemotePostHandler: NewRemotePostHandler, + soneLockedOnStartupHandler: SoneLockedOnStartupHandler )