mark read backend

This commit is contained in:
2023-10-29 17:06:19 +01:00
parent 1789458830
commit abf9a1b818
5 changed files with 53 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
use actix_web::{web, HttpRequest, HttpResponse, Responder};
use crate::json_serialization::read_feed_item::ReadItem;
pub async fn mark_read(_req: HttpRequest, path: web::Path<ReadItem>) -> impl Responder {
log::info!("Id: {}", path.id);
HttpResponse::Ok()
}