Removed authorization from the SetupRoute.java

This commit is contained in:
Mathias Wagner 2024-02-15 17:11:22 +01:00
parent b5b93c4dbc
commit f6a8c3f537
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -15,6 +15,11 @@ public class SetupRoute extends DefaultHandler {
return "setup";
}
@Override
public boolean needsAuthorization() {
return false;
}
@Override
public void get(Request request, ResponseController response) throws Exception {
if (userManager.isSetupMode()) {