feat: ministrant list tab with add/edit, action bar at top

This commit is contained in:
2026-07-14 22:05:00 +02:00
parent 39929361a0
commit 7e5fa85a0a
5 changed files with 14 additions and 4 deletions
+2
View File
@@ -11,3 +11,5 @@ DATABASE_PASSWORD=abc
ADMIN_PASSWORD=123
FRONTEND_PATH=./public
APPLICATION_NAME=Miniplan\ Hl.\ Familie
PORT=8080
+3 -3
View File
@@ -1,7 +1,7 @@
ktor {
development = true
deployment {
port = "${PORT}"
port = ${PORT}
}
application {
modules = [ de.walamana.ApplicationKt.module ]
@@ -9,7 +9,7 @@ ktor {
}
jwt {
secret = "${SECRET}"
secret = ${SECRET}
issuer = "http://0.0.0.0:8080/"
audience = "http://0.0.0.0:8080/"
realm = "mini-data"
@@ -21,5 +21,5 @@ database {
}
admin {
password = "${ADMIN}"
password = ${ADMIN}
}