Skip to content

Commit 1cf01e7

Browse files
committed
Move auth_url to security configuration from machine configuration as it should work on a centeralised server as well
1 parent 368dd2f commit 1cf01e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/util/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class MachineConfig(BaseModel, extra=Extra.allow): # type: ignore
6868
rsync_url: str = ""
6969

7070
security_configuration_path: Optional[Path] = None
71-
auth_url: str = ""
7271

7372
notifications_queue: str = "pato_notification"
7473

@@ -88,6 +87,7 @@ class Security(BaseModel):
8887
crypto_key: str
8988
auth_key: str = ""
9089
auth_algorithm: str = ""
90+
auth_url: str = ""
9191
sqlalchemy_pooling: bool = True
9292
allow_origins: List[str] = ["*"]
9393
session_validation: str = ""

0 commit comments

Comments
 (0)