diff --git a/backend/app/schemas.py b/backend/app/schemas.py index b44c8debd..aeefd4b44 100644 --- a/backend/app/schemas.py +++ b/backend/app/schemas.py @@ -254,4 +254,8 @@ class PasskeyRegistrationVerifyRequest(BaseModel): class PasskeyLoginVerifyRequest(BaseModel): email: Optional[EmailStr] = None - credential: dict \ No newline at end of file + credential: dict + +def CustomerFeedbackSchema(): + """Helper function for CustomerFeedbackSchema.""" + return {"status": "ok", "fn": "CustomerFeedbackSchema"}