You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have not touched it as I wanted to keep API same as before, until OpenAPI will show it is stable. Actually seems like now nothing prevents us. Only precondition here is to not introduce breaking change, means it should wait for 25.x version of keycloak.
Currently, all string params are
Option<String>
(57 occurrences).What do you think of switching all with
Option<&str>
?auth_client: Option<&str>,
instead ofauth_client: Option<String>,
.The text was updated successfully, but these errors were encountered: