(20241209) Another frozen field bug fix.
This commit is contained in:
@@ -135,13 +135,13 @@ class CoreAuthTokenModel(BaseModel):
|
|||||||
|
|
||||||
auth: dict | None = Field(
|
auth: dict | None = Field(
|
||||||
description = "any direct auth details like api keys or passwords; will differ for each client",
|
description = "any direct auth details like api keys or passwords; will differ for each client",
|
||||||
frozen = True,
|
frozen = False,
|
||||||
default = None
|
default = None
|
||||||
)
|
)
|
||||||
|
|
||||||
token: dict | None = Field(
|
token: dict | None = Field(
|
||||||
description = "the actual auth tokens of that client; will differ for each client",
|
description = "the actual auth tokens of that client; will differ for each client",
|
||||||
frozen = True,
|
frozen = False,
|
||||||
default = None
|
default = None
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user