JWT login, org-scoped storage and RAG, admin/director/user roles, user-owned projects, login UI, and legacy data migration. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
225 B
Python
7 lines
225 B
Python
"""Authentication and multi-tenant access control."""
|
|
|
|
from backend.auth.deps import get_current_user, require_admin
|
|
from backend.auth.models import UserContext
|
|
|
|
__all__ = ["UserContext", "get_current_user", "require_admin"]
|