X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fnotification%2FNotificationHandler.kt;h=a24a6d8bad8912a2b7a6a3947a79500a9afa073b;hp=d0e8bf275280d395caa95c05f4c30f94f5daed47;hb=438378deab1514f0f608d975ef65f5b7aea44ccb;hpb=7a4ce0402bb7146ad791fbc52c0cf9b4d6871c91 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 d0e8bf2..a24a6d8 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt @@ -1,5 +1,5 @@ /** - * Sone - NotificationHandler.kt - Copyright © 2019 David ‘Bombe’ Roden + * Sone - NotificationHandler.kt - Copyright © 2019–2020 David ‘Bombe’ Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,8 +31,11 @@ class NotificationHandler @Inject constructor( markPostReplyKnownDuringFirstStartHandler: MarkPostReplyKnownDuringFirstStartHandler, newSoneHandler: NewSoneHandler, newRemotePostHandler: NewRemotePostHandler, + remotePostReplyHandler: RemotePostReplyHandler, soneLockedOnStartupHandler: SoneLockedOnStartupHandler, soneLockedHandler: SoneLockedHandler, + localPostHandler: LocalPostHandler, + localReplyHandler: LocalReplyHandler, newVersionHandler: NewVersionHandler, imageInsertHandler: ImageInsertHandler, firstStartHandler: FirstStartHandler, @@ -41,5 +44,6 @@ class NotificationHandler @Inject constructor( webOfTrustPinger: WebOfTrustPinger, webOfTrustHandler: WebOfTrustHandler, soneMentionDetector: SoneMentionDetector, - soneMentionedHandler: SoneMentionedHandler + soneMentionedHandler: SoneMentionedHandler, + soneInsertHandler: SoneInsertHandler )