1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-03 05:07:46 +00:00

Remove authentication check when on /community

This commit is contained in:
Quackster 2023-01-23 15:22:54 +10:00 committed by GitHub
parent 1d863a7c2b
commit 9d42e6b86c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,10 +14,6 @@ public class CommunityController {
XSSUtil.clear(webConnection); XSSUtil.clear(webConnection);
var template = webConnection.template("community"); var template = webConnection.template("community");
if (!webConnection.session().contains("authenticated")) {
return;
}
/* /*
if (CacheManager.useCachePage(webConnection, "community")) { if (CacheManager.useCachePage(webConnection, "community")) {
webConnection.send(CacheManager.getPage(webConnection, "community")); webConnection.send(CacheManager.getPage(webConnection, "community"));