use config.server_name as title in OIDC pages

This commit is contained in:
lafleur 2025-05-10 21:07:33 +02:00 committed by Jade Ellis
parent 95f25f67cf
commit 8f3fdb0023
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2
2 changed files with 4 additions and 11 deletions

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));

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