From c692f7881b32cd858a4966361c9acf31c2df1ad8 Mon Sep 17 00:00:00 2001 From: Jottyfan Date: Tue, 4 Mar 2025 23:02:10 +0100 Subject: [PATCH] allow kerstin to access camp list --- build.gradle | 2 +- src/main/java/de/jottyfan/bico/modules/CommonController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index e34ea83..3784ded 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { } group = 'de.jottyfan.bico' -version = '0.2.4' +version = '0.2.5' description = """BibleClassOrganizer""" diff --git a/src/main/java/de/jottyfan/bico/modules/CommonController.java b/src/main/java/de/jottyfan/bico/modules/CommonController.java index 8636cef..843cf14 100644 --- a/src/main/java/de/jottyfan/bico/modules/CommonController.java +++ b/src/main/java/de/jottyfan/bico/modules/CommonController.java @@ -19,7 +19,7 @@ import de.jottyfan.bico.modules.profile.ProfileService; * */ public abstract class CommonController { - private static final List admins = List.of("andre.sieber", "tobias.kuehne", "jotty"); + private static final List admins = List.of("andre.sieber", "tobias.kuehne", "jotty", "kerstin.meisel"); @Autowired private ProfileService profileService;