From 384ad103bde42fa377fbb6e9e854dcb306923a10 Mon Sep 17 00:00:00 2001 From: Amit Chaudhary Date: Thu, 30 Apr 2026 18:12:38 +0530 Subject: [PATCH] return bio of org auditors --- api/views/auditor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/views/auditor.py b/api/views/auditor.py index 40535ec8..eb7406d8 100644 --- a/api/views/auditor.py +++ b/api/views/auditor.py @@ -101,6 +101,7 @@ def get(self, request: Request, organization_id: str) -> Response: "email": user.email, "first_name": user.first_name, "last_name": user.last_name, + "bio": user.bio, "profile_picture": user.profile_picture.url if user.profile_picture else None, "joined_at": ( membership.created_at.isoformat() if membership.created_at else None