Rename route
This commit is contained in:
		| @@ -14,7 +14,7 @@ pub struct Request { | ||||
|     first_code: String, | ||||
| } | ||||
|  | ||||
| pub async fn save_totp_key(user: CurrentUser, form: web::Json<Request>, | ||||
| pub async fn save_totp_factor(user: CurrentUser, form: web::Json<Request>, | ||||
|                               users: web::Data<Addr<UsersActor>>) -> impl Responder { | ||||
|     let key = TotpKey::from_encoded_secret(&form.secret); | ||||
|  | ||||
|   | ||||
| @@ -122,7 +122,7 @@ async fn main() -> std::io::Result<()> { | ||||
|             .route("/settings/two_factors/add_totp", web::get().to(two_factors_controller::add_totp_factor_route)) | ||||
|  | ||||
|             // User API | ||||
|             .route("/settings/api/two_factors/save_totp_key", web::post().to(two_factors_api::save_totp_key)) | ||||
|             .route("/settings/api/two_factors/save_totp_factor", web::post().to(two_factors_api::save_totp_factor)) | ||||
|  | ||||
|             // Admin routes | ||||
|             .route("/admin", web::get() | ||||
|   | ||||
| @@ -75,7 +75,7 @@ | ||||
|                 return; | ||||
|  | ||||
|             try { | ||||
|                 const res = await fetch("/settings/api/two_factors/save_totp_key", { | ||||
|                 const res = await fetch("/settings/api/two_factors/save_totp_factor", { | ||||
|                     method: "post", | ||||
|                     headers: { | ||||
|                       'Content-Type': 'application/json', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user