1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-20 16:35:17 +00:00

Can delete all the notifications of a given user

This commit is contained in:
2020-07-12 14:02:52 +02:00
parent d358119ae6
commit ead879bc21
3 changed files with 14 additions and 0 deletions

View File

@ -71,4 +71,11 @@ pub fn mark_seen(r: &mut HttpRequestHandler) -> RequestResult {
notifications_helper::delete(&notif)?;
r.success("Notification deleted")
}
/// Delete all the notifications of the current user
pub fn delete_all(r: &mut HttpRequestHandler) -> RequestResult {
notifications_helper::delete_all_user(r.user_id_ref()?)?;
r.success("Notifications deleted.")
}

View File

@ -253,6 +253,8 @@ pub fn get_routes() -> Vec<Route> {
Route::post("/notifications/mark_seen", Box::new(notifications_controller::mark_seen)),
Route::post("/notifications/delete_all", Box::new(notifications_controller::delete_all)),
// Movies controller
Route::post("/movies/get_list", Box::new(movies_controller::get_list)),