feat(customers): add initial admin bootstrap and csv import

This commit is contained in:
DS | Schubert 2026-07-03 09:14:56 +02:00
parent c816e9869d
commit ecab0fe6b6
27 changed files with 1197 additions and 34 deletions

View file

@ -81,6 +81,8 @@ def login(
def me(current_user: User = Depends(get_current_active_user)):
return {
"id": current_user.id,
"first_name": current_user.first_name,
"last_name": current_user.last_name,
"username": current_user.username,
"email": current_user.email,
"role": current_user.primary_role.name,