Use Request utility method
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / DeleteSonePage.kt
index d69c3ae..1d0f6aa 100644 (file)
@@ -1,9 +1,9 @@
 package net.pterodactylus.sone.web
 
+import net.pterodactylus.sone.utils.isPOST
 import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
-import net.pterodactylus.util.web.Method.POST
 
 /**
  * Lets the user delete a Sone. Of course the Sone is not really deleted from
@@ -14,7 +14,7 @@ class DeleteSonePage(template: Template, webInterface: WebInterface):
                SoneTemplatePage("deleteSone.html", template, "Page.DeleteSone.Title", webInterface, true) {
 
        override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
-               if (request.method == POST) {
+               if (request.isPOST) {
                        if (request.httpRequest.isPartSet("deleteSone")) {
                                webInterface.core.deleteSone(getCurrentSone(request.toadletContext))
                        }