We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22b72f3 commit 3742c71Copy full SHA for 3742c71
src/murfey/util/config.py
@@ -528,7 +528,14 @@ class GlobalConfig(BaseModel):
528
)
529
530
# Server authentication settings
531
- auth_type: Literal["password", "cookie"] = "password"
+ auth_type: Literal["password", "cookie"] = Field(
532
+ default="password",
533
+ description=(
534
+ "Choose how Murfey will authenticate new connections that it receives. "
535
+ "This can be done at present via password authentication or exchanging "
536
+ "cookies."
537
+ ),
538
+ )
539
auth_key: str = ""
540
auth_algorithm: str = ""
541
cookie_key: str = ""
0 commit comments