Při vytváření implicitních rolí je u role USER nastaveno vyhodnocování

práv pro střediska a komise.
multitenant
Josef Rokos 11 years ago
parent 4d3f60c664
commit bb1ce6514e

@ -56,6 +56,10 @@ public class AppInitListener implements ServletContextListener {
for (Role role : Constants.ROLES) for (Role role : Constants.ROLES)
{ {
if (roleService.getRoleByAuthority(role.getAuthority()) == null) { if (roleService.getRoleByAuthority(role.getAuthority()) == null) {
if (role.getAuthority().equals(Constants.ROLE_USER)) {
role.setCentre(true);
role.setWorkgroup(true);
}
roleService.add(role); roleService.add(role);
} }
} }

Loading…
Cancel
Save