Handle OIDC errors
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-04-25 18:18:48 +02:00
parent 66ea004705
commit 2cca64f9b8
4 changed files with 113 additions and 7 deletions

View File

@@ -166,6 +166,10 @@ async fn main() -> std::io::Result<()> {
"/login_with_prov",
web::get().to(providers_controller::start_login),
)
.route(
OIDC_PROVIDER_CB_URI,
web::get().to(providers_controller::finish_login),
)
// Settings routes
.route(
"/settings",