We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b60cea commit 5161295Copy full SHA for 5161295
client/testfixture/wasm/auth_ui_component.wasm
13 Bytes
crates/auth-ui/src/lib.rs
@@ -144,7 +144,7 @@ async fn ui_login_handler(
144
let html = auth::LoginTemplate {
145
state: format!("{redirect_uri}\n{response_type}\n{pkce_code_challenge}"),
146
alert: query.alert.as_deref().unwrap_or_default(),
147
- enable_registration: config.disable_password_auth,
+ enable_registration: !config.disable_password_auth,
148
oauth_providers: &config.oauth_providers,
149
oauth_query_params: &oauth_query_params,
150
}
crates/core/src/auth/mod.rs
@@ -17,7 +17,6 @@ pub(crate) mod tokens;
17
pub(crate) mod util;
18
19
mod error;
20
-// mod ui;
21
22
pub use error::AuthError;
23
pub use jwt::{JwtHelper, TokenClaims};
0 commit comments