feat: Redirect to requested URL after login

This commit is contained in:
selfhoster selfhoster 2026-09-20 18:13:59 +02:00
commit 63e55f814f
8 changed files with 144 additions and 17 deletions

9
Cargo.lock generated
View file

@ -148,6 +148,12 @@ version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "base64"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
[[package]]
name = "bitflags"
version = "2.13.1"
@ -512,7 +518,7 @@ version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "105256b138a7ed84ac1ae375870eae23be5f8fed16ca172ae5f1c1aa37bd4242"
dependencies = [
"base64",
"base64 0.22.1",
"bytes",
"ldap3_lber",
"nom",
@ -537,6 +543,7 @@ dependencies = [
"async-trait",
"axum",
"axum-extra",
"base64 0.23.1",
"camino",
"dn_escape",
"futures-util",