feat(fullstack): Add notifications, user is now an entity, add testcontainers, rework custom permissions, get user from JWT in endpoints

This commit is contained in:
2025-08-09 10:09:00 +02:00
parent a5eae07eaf
commit 7e55a336f2
44 changed files with 1571 additions and 139 deletions

View File

@@ -9,6 +9,8 @@ class UserMapper() {
return UserDto(
id = user.id,
name = user.name,
status = user.status,
role = user.role
)
}
@@ -16,6 +18,8 @@ class UserMapper() {
return User(
id = userDto.id,
name = userDto.name,
status = userDto.status,
role = userDto.role
)
}
}