Add test for DI constructability of UnlikeAjaxPage
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / UnlikeAjaxPage.kt
index b30829a..e2277c9 100644 (file)
@@ -5,11 +5,13 @@ import net.pterodactylus.sone.utils.emptyToNull
 import net.pterodactylus.sone.utils.parameters
 import net.pterodactylus.sone.web.WebInterface
 import net.pterodactylus.sone.web.page.FreenetRequest
+import javax.inject.Inject
 
 /**
  * AJAX page that lets the user unlike a [net.pterodactylus.sone.data.Post].
  */
-class UnlikeAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("unlike.ajax", webInterface) {
+class UnlikeAjaxPage @Inject constructor(webInterface: WebInterface) :
+               LoggedInJsonPage("unlike.ajax", webInterface) {
 
        override fun createJsonObject(currentSone: Sone, request: FreenetRequest) = when (request.parameters["type"]) {
                "post" -> request.processEntity("post", currentSone::removeLikedPostId)