replace outdated test credentials with placeholder

This commit is contained in:
Paul Zinselmeyer 2024-03-12 16:18:18 +01:00
parent 84bd595ea1
commit a522b7936d
Signed by: pfzetto
GPG key ID: B471A1AF06C895FD

View file

@ -31,10 +31,10 @@ async fn main() {
}))
.layer(
OidcAuthLayer::<EmptyAdditionalClaims>::discover_client(
Uri::from_static("http://localhost:8080"),
"https://auth.zettoit.eu/realms/zettoit".to_string(),
"oxicloud".to_string(),
Some("IvBcDOfp9WBfGNmwIbiv67bxCwuQUGbl".to_owned()),
Uri::from_static("https://app.example.com"),
"https://auth.example.com/auth/realms/example".to_string(),
"my-client".to_string(),
Some("123456".to_owned()),
vec![],
)
.await