Add test for DI constructability of FollowSoneAjaxPage
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / FollowSoneAjaxPage.kt
index ac77008..32591b5 100644 (file)
@@ -4,11 +4,13 @@ import net.pterodactylus.sone.data.Sone
 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 a Sone follow another Sone.
  */
-class FollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("followSone.ajax", webInterface) {
+class FollowSoneAjaxPage @Inject constructor(webInterface: WebInterface) :
+               LoggedInJsonPage("followSone.ajax", webInterface) {
 
        override fun createJsonObject(currentSone: Sone, request: FreenetRequest) =
                        request.parameters["sone"]