mark read backend
This commit is contained in:
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user