Make authenticatedGroup external, fix small flaw

This commit is contained in:
Florian Scholdei
2020-11-03 10:57:46 +01:00
parent f1115099c9
commit bfa917859a
2 changed files with 2 additions and 1 deletions

View File

@@ -136,6 +136,7 @@ public class SetupContextListener implements ServletContextListener {
private void createAuthenticatedGroup() {
Group authenticated = new Group("xml", AUTHENTICATED);
authenticated.setDescription(AUTHENTICATED_GROUP_DESCRIPTION);
authenticated.setExternal(true);
groupManager.create(authenticated);
}
}