(20250116) Had accidentally set one field as 'frozen'.

This commit is contained in:
2025-01-16 16:41:33 +05:30
parent ed1e86c5e9
commit 0c1b8e1b0f
+1 -1
View File
@@ -136,7 +136,7 @@ class OAuthMailHandleCallbackResponse(BaseModel):
"authorized" # ... The user gave authorization.
] = Field(
description = "To describe what the user did with the authorization URL.",
frozen = True,
frozen = False,
default = "unknown"
)