X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FDeleteSonePage.java;h=ae01573b604d92974fb8e425b1c5c1f07b923f71;hb=8b25ea98d342ed2e3e80914448156145a3e6757d;hp=4e632783a43454154fc2520bd1ed37177570f5ae;hpb=d4c71f70fc4fa669b418adabf5d5e8dd3677042d;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java b/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java index 4e63278..ae01573 100644 --- a/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/DeleteSonePage.java @@ -39,7 +39,7 @@ public class DeleteSonePage extends SoneTemplatePage { * The Sone web interface */ public DeleteSonePage(Template template, WebInterface webInterface) { - super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface); + super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface, true); } // @@ -55,22 +55,10 @@ public class DeleteSonePage extends SoneTemplatePage { if (request.getMethod() == Method.POST) { if (request.getHttpRequest().isPartSet("deleteSone")) { Sone currentSone = getCurrentSone(request.getToadletContext()); - webInterface.core().deleteSone(currentSone); + webInterface.getCore().deleteSone(currentSone); } throw new RedirectException("index.html"); } } - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; - } - }