feat: add organization retrieval endpoint and JWT authentication support

This commit is contained in:
Artem Kashaev
2025-11-27 15:04:31 +05:00
parent 845737abca
commit ea8f0eda65
3 changed files with 51 additions and 11 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ async def list_deals(
stage: str | None = None,
owner_id: int | None = None,
order_by: str | None = None,
order: str | None = Query(default=None, regex="^(asc|desc)$"),
order: str | None = Query(default=None, pattern="^(asc|desc)$"),
) -> dict[str, str]:
"""Placeholder for deal filtering endpoint."""
_ = (status_filter,)