1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-26 15:29:21 +00:00

Can check given password

This commit is contained in:
Pierre HUBERT 2021-01-19 17:52:13 +01:00
parent 77d11a8210
commit 9c8116f9bd
2 changed files with 8 additions and 0 deletions

View File

@ -100,6 +100,7 @@ pub fn get_routes() -> Vec<Route> {
Route::post("/settings/set_language", Box::new(settings_controller::set_language)),
Route::post("/settings/get_security", Box::new(settings_controller::get_security)),
Route::post("/settings/set_security", Box::new(settings_controller::set_security)),
Route::post("/settings/check_password", Box::new(settings_controller::check_password)),
// Friends controller
Route::post("/friends/getList", Box::new(friends_controller::get_list)),

View File

@ -116,4 +116,11 @@ pub fn set_security(r: &mut HttpRequestHandler) -> RequestResult {
account_helper::set_security_settings(&new_settings)?;
r.success("Security settings update.")
}
/// Check user password
pub fn check_password(r: &mut HttpRequestHandler) -> RequestResult {
r.need_user_password("password")?;
r.success("The password is valid.")
}