Implemented PUT for u2f registration

This commit is contained in:
Daniel García 2018-08-13 15:26:01 +02:00
parent 16056626b0
commit d3f357b708
2 changed files with 6 additions and 0 deletions

View File

@ -73,6 +73,7 @@ pub fn routes() -> Vec<Route> {
activate_authenticator_put,
generate_u2f,
activate_u2f,
activate_u2f_put,
get_organization,
create_organization,

View File

@ -374,6 +374,11 @@ fn activate_u2f(data: JsonUpcase<EnableU2FData>, headers: Headers, conn: DbConn)
}
}
#[put("/two-factor/u2f", data = "<data>")]
fn activate_u2f_put(data: JsonUpcase<EnableU2FData>, headers: Headers, conn: DbConn) -> JsonResult {
activate_u2f(data,headers, conn)
}
fn _create_u2f_challenge(user_uuid: &str, type_: TwoFactorType, conn: &DbConn) -> Challenge {
let challenge = U2F.generate_challenge().unwrap();