ai review partial fix

This commit is contained in:
Igor Loskutov
2025-06-19 12:49:23 -04:00
parent 106c332774
commit 351fb54f25

View File

@@ -204,6 +204,8 @@ class MeetingConsentController:
meeting_consent.c.user_id == user_id,
)
result = await database.fetch_one(query)
if result is None:
return None
return MeetingConsent(**result) if result else None
async def upsert(self, consent: MeetingConsent) -> MeetingConsent: