fix: change redirect_uri type to str in AuthCallbackRequest schema and update its usage in auth_callback

This commit is contained in:
Mabe
2026-06-21 17:10:25 +02:00
parent 8e395a4966
commit fd453013fd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class ChatRequest(BaseModel):
class AuthCallbackRequest(BaseModel):
code: str
code_verifier: str
redirect_uri: HttpUrl
redirect_uri: str
class AuthConfigResponse(BaseModel):
issuer: HttpUrl