Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Gorzala committed Dec 27, 2023
1 parent bf4cfaa commit 50417c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class EventlogService {
private final ScheduleMessagePort scheduleMessagePort;
private final static Set<String> DEFAULT_AUTHENTICATED = Set.of("ROLE_USER", "ROLE_ADMIN");
private final static Set<String> AT_LEAST_HUMAN = Set.of("ROLE_HUMAN", "ROLE_USER", "ROLE_ADMIN");
private final static Set<String> NO_SPECIAL_ROLE_NEEDED = Set.of();
private final static Set<String> NO_SPECIAL_ROLE_NEEDED = Set.of("ROLE_ANONYMOUS");
private final static Set<EventlogConfig> allowedEvents = Set.of(
EventlogConfig.of("app_instance_id_created", NO_SPECIAL_ROLE_NEEDED),
EventlogConfig.of("navigated_to_page", NO_SPECIAL_ROLE_NEEDED),
Expand Down

0 comments on commit 50417c2

Please sign in to comment.