feat(presentation): remote actor posts endpoint + extended RemoteActorResponse

This commit is contained in:
2026-05-14 22:19:23 +02:00
parent 00b369c6ad
commit f3c3637ade
6 changed files with 165 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ use axum::{
use domain::models::feed::PageParams;
use domain::value_objects::UserId;
fn to_thought_response(e: &domain::models::feed::FeedEntry) -> ThoughtResponse {
pub fn to_thought_response(e: &domain::models::feed::FeedEntry) -> ThoughtResponse {
ThoughtResponse {
id: e.thought.id.as_uuid(),
content: e.thought.content.as_str().to_string(),