Mandantenfähigkeit V1 #10

Merged
Lars merged 17 commits from develop into main 2026-05-05 22:34:25 +02:00
4 changed files with 14 additions and 3 deletions
Showing only changes of commit f48b573a63 - Show all commits

View File

@ -161,6 +161,8 @@ app.include_router(profiles.router)
app.include_router(exercises.router)
app.include_router(exercise_progression_graphs.router)
app.include_router(clubs.router)
app.include_router(club_memberships.router)
app.include_router(club_join_requests.router)
app.include_router(admin_users.router)
app.include_router(skills.router)
app.include_router(training_planning.router)

View File

@ -1,6 +1,6 @@
# Shinkan Jinkendo Version Information
APP_VERSION = "0.8.20"
APP_VERSION = "0.8.21"
BUILD_DATE = "2026-05-05"
DB_SCHEMA_VERSION = "20260505041"
@ -26,6 +26,13 @@ MODULE_VERSIONS = {
}
CHANGELOG = [
{
"version": "0.8.21",
"date": "2026-05-05",
"changes": [
"FastAPI: Router club_memberships und club_join_requests registriert (GET /api/clubs/{id}/members, join-requests u. a.) — behoben 404 auf Vereinsseite Tab Mitglieder",
],
},
{
"version": "0.8.20",
"date": "2026-05-05",

View File

@ -10,7 +10,9 @@ function Navigation() {
const selectClubId =
user?.active_club_id != null && clubs.some((c) => c.id === user.active_club_id)
? user.active_club_id
: clubs[0]?.id const handleLogout = async () => {
: clubs[0]?.id
const handleLogout = async () => {
await logout()
navigate('/login')
}

View File

@ -1,6 +1,6 @@
// Shinkan Jinkendo Frontend Version
export const APP_VERSION = "0.8.20"
export const APP_VERSION = "0.8.21"
export const BUILD_DATE = "2026-05-05"
export const PAGE_VERSIONS = {