|
@@ -9,8 +9,7 @@ fn generate_template_data(
|
|
|
realm: µrm::Stored<schema::Realm>,
|
|
|
user: µrm::Stored<schema::User>,
|
|
|
) -> Result<serde_json::Value, UIDCError> {
|
|
|
- let totp : microrm::Serialized<_> = schema::AuthChallengeType::TOTP.into();
|
|
|
- let has_totp = user.auth.with(schema::AuthChallenge::ChallengeType, totp).count()? > 0;
|
|
|
+ let has_totp = user.auth.with(schema::AuthChallenge::ChallengeType, schema::AuthChallengeType::TOTP.into_serialized()).count()? > 0;
|
|
|
|
|
|
let template_data = serde_json::json!({
|
|
|
"username": user.username,
|
|
@@ -113,7 +112,7 @@ async fn um_update(mut req: Request) -> tide::Result<tide::Response> {
|
|
|
info_msgs.push("Cleared TOTP setup".into());
|
|
|
} else if totp == "reset" {
|
|
|
let (_secret, _uri) = user.generate_totp_with_uri()?;
|
|
|
- Err(UIDCError::Abort("totp setup outside of cli not supported"))?
|
|
|
+ Err(UIDCError::Abort("totp setup outside of cli not (yet) supported"))?
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -153,7 +152,10 @@ async fn um_update(mut req: Request) -> tide::Result<tide::Response> {
|
|
|
}
|
|
|
|
|
|
pub(super) fn um_server(mut route: tide::Route<super::ServerStateWrapper>) {
|
|
|
- route.at("/").get(um_index);
|
|
|
- route.at("update").post(um_update);
|
|
|
+ route.at("um").get(|_req| async {
|
|
|
+ Ok(tide::Redirect::permanent("um/"))
|
|
|
+ });
|
|
|
+ route.at("um/").get(um_index);
|
|
|
+ route.at("um/update").post(um_update);
|
|
|
// route.at("/change_password").get(um_change_password).post(um_change_password_post);
|
|
|
}
|