updating well-known URI to meed OIDC spec (#563)

This commit is contained in:
James Hodgkinson 2021-08-11 10:17:03 +10:00 committed by GitHub
parent 1cb057ba1d
commit 80753451ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1230,7 +1230,7 @@ pub fn create_https_server(
tserver.at("/status").get(self::status);
let mut well_known = tserver.at("/well-known");
let mut well_known = tserver.at("/.well-known");
well_known
.at("/openid-configuration")
.get(get_openid_configuration);