use config.server_name as title in OIDC pages

This commit is contained in:
lafleur
2025-11-11 11:34:26 -05:00
committed by Ginger
parent 144036f58b
commit cadcbd7d49
2 changed files with 4 additions and 11 deletions
+2 -5
View File
@@ -41,11 +41,8 @@ pub(crate) async fn authorize(
// Redirect to the login page if no token or token not known.
let hostname = services
.config
.well_known
.client
.as_ref()
.map(|s| s.host_str().expect("well-known client should have a host"));
let hostname = hostname.unwrap_or("Continuwuity");
.server_name
.host();
match oauth.authorization_header() {
| None => {
return Ok(oidc_login_form(hostname, &query));
+2 -6
View File
@@ -44,12 +44,8 @@ pub(crate) async fn oidc_login(
let hostname = services
.config
.well_known
.client
.as_ref()
.map(|s| s.host_str().expect("well-known client should have a host"));
let hostname = hostname.unwrap_or("Continuwuity");
.server_name
.host();
let authorization_query: AuthorizationQuery = query.into();
services