transcription/backend/auth/__init__.py
keboss-m 8df14e3102 Add multi-tenant auth with org projects, roles, and personal workspaces.
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>
2026-06-01 18:54:25 +03:00

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"]