2fd4bd123d
- Restore {plugins: [...], total: N} for /plugins and /plugins/active-manifests
(flat array broke frontend PluginRegistry → no menu items → empty UI)
- Restore {count: N} for /notifications/unread-count
(scalar broke frontend notification badge)
- Fix ai_ui_control: on_install → on_activate for WS manager registration
(WS 403 on every reconnect after container restart)
- Fix double /api/v1 prefix in useAIContext.ts and SuggestionBadge.tsx
- Add first_name, last_name, avatar_url to User model + migration 0032
- Extend UserUpdate schema with profile + password change fields
- Extend user_service.update_user with profile fields + password change
- Extend frontend UserResponse/UserUpdate types
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""User schemas."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pydantic import BaseModel, EmailStr, Field
|
|
|
|
|
|
class UserCreate(BaseModel):
|
|
email: EmailStr = Field(..., examples=["user@leocrm.local"])
|
|
name: str = Field(..., min_length=1, max_length=200, examples=["John Doe"])
|
|
password: str = Field(..., min_length=8, examples=["secure-password"])
|
|
role: str = Field(default="viewer", examples=["viewer"])
|
|
role_id: str | None = Field(default=None, description="UUID of a custom Role", examples=["550e8400-e29b-41d4-a716-446655440000"])
|
|
is_active: bool = True
|
|
|
|
|
|
class UserUpdate(BaseModel):
|
|
name: str | None = Field(None, min_length=1, max_length=200)
|
|
first_name: str | None = Field(None, max_length=100)
|
|
last_name: str | None = Field(None, max_length=100)
|
|
email: EmailStr | None = None
|
|
avatar_url: str | None = None
|
|
role: str | None = None
|
|
role_id: str | None = Field(default=None, description="UUID of a custom Role; send null to clear")
|
|
is_active: bool | None = None
|
|
current_password: str | None = Field(None, description="Required when changing password")
|
|
new_password: str | None = Field(None, min_length=8, description="New password")
|
|
|
|
|
|
class UserResponse(BaseModel):
|
|
id: str
|
|
email: str
|
|
name: str
|
|
first_name: str | None = None
|
|
last_name: str | None = None
|
|
avatar_url: str | None = None
|
|
role: str
|
|
role_id: str | None = None
|
|
is_active: bool
|
|
tenant_id: str
|
|
|
|
|
|
class PaginatedUsers(BaseModel):
|
|
items: list[UserResponse]
|
|
total: int
|
|
page: int
|
|
page_size: int
|