fix: show member email instead of UUID in team management

This commit is contained in:
m
2026-03-30 17:09:14 +02:00
parent 481b299e03
commit f51d189a3b
3 changed files with 7 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ type UserTenant struct {
UserID uuid.UUID `db:"user_id" json:"user_id"`
TenantID uuid.UUID `db:"tenant_id" json:"tenant_id"`
Role string `db:"role" json:"role"`
Email string `db:"email" json:"email"`
CreatedAt time.Time `db:"created_at" json:"created_at"`
}