feat(api): enhance OpenAPI documentation with additional endpoints and examples

This commit is contained in:
Abhimanyu Saharan
2026-02-15 02:57:06 +05:30
parent ae17facf88
commit 07df7d8962
2 changed files with 338 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ if TYPE_CHECKING:
from sqlmodel.ext.asyncio.session import AsyncSession
router = APIRouter(prefix="/organizations/me/custom-fields", tags=["org-custom-fields"])
router = APIRouter(prefix="/organizations/me/custom-fields", tags=["custom-fields"])
SESSION_DEP = Depends(get_session)
ORG_MEMBER_DEP = Depends(require_org_member)
ORG_ADMIN_DEP = Depends(require_org_admin)