Private
Public Access
1
0

client: actually do authentication properly

This commit is contained in:
2025-05-01 01:02:36 -07:00
parent 59cfc8008b
commit fd4c43d585
7 changed files with 105 additions and 74 deletions

View File

@@ -108,6 +108,7 @@ impl DbusSettings for ServerImpl {
server_url: Some(url),
username: Some(user),
credential_item: None,
token: None,
}, r)
)
}
@@ -123,6 +124,7 @@ impl DbusSettings for ServerImpl {
server_url: Some(value),
username: None,
credential_item: None,
token: None,
}, r)
)
}
@@ -138,6 +140,7 @@ impl DbusSettings for ServerImpl {
server_url: None,
username: Some(value),
credential_item: None,
token: None,
}, r)
)
}
@@ -153,6 +156,7 @@ impl DbusSettings for ServerImpl {
server_url: None,
username: None,
credential_item: Some(value.to_string()),
token: None,
}, r)
)
}