major cleanup

This commit is contained in:
Athou
2013-03-21 18:40:09 +01:00
parent 92e1732748
commit 420424d279
41 changed files with 247 additions and 1166 deletions

View File

@@ -0,0 +1,10 @@
package com.commafeed.frontend.components.auth;
import org.apache.wicket.markup.html.WebPage;
public class LogoutPage extends WebPage {
public LogoutPage() {
getSession().invalidate();
setResponsePage(getApplication().getHomePage());
}
}