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:
@ -71,4 +71,11 @@ pub fn mark_seen(r: &mut HttpRequestHandler) -> RequestResult {
|
||||
notifications_helper::delete(¬if)?;
|
||||
|
||||
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.")
|
||||
}
|
@ -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)),
|
||||
|
Reference in New Issue
Block a user