X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fnotification%2FNotificationHandler.kt;h=f7c074354883f28d30271c440a71506e2409bbab;hb=b5848fd116890f2b9434f169a16d203f24bfa94e;hp=cc2a2b3c71be6216d192e6fddc0455c8e7a39842;hpb=60b0b8a4b6954a0137b963397e144fd4ed82e3a8;p=Sone.git 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 cc2a2b3..f7c0743 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt @@ -28,8 +28,10 @@ import javax.inject.* @Suppress("UNUSED_PARAMETER") class NotificationHandler @Inject constructor( markPostKnownDuringFirstStartHandler: MarkPostKnownDuringFirstStartHandler, + markPostReplyKnownDuringFirstStartHandler: MarkPostReplyKnownDuringFirstStartHandler, newSoneHandler: NewSoneHandler, newRemotePostHandler: NewRemotePostHandler, + remotePostReplyHandler: RemotePostReplyHandler, soneLockedOnStartupHandler: SoneLockedOnStartupHandler, soneLockedHandler: SoneLockedHandler, newVersionHandler: NewVersionHandler, @@ -39,5 +41,6 @@ class NotificationHandler @Inject constructor( startupHandler: StartupHandler, webOfTrustPinger: WebOfTrustPinger, webOfTrustHandler: WebOfTrustHandler, - soneMentionDetector: SoneMentionDetector + soneMentionDetector: SoneMentionDetector, + soneMentionedHandler: SoneMentionedHandler )