summaryrefslogtreecommitdiffstats
path: root/server/src/api/post.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/api/post.rs')
-rw-r--r--server/src/api/post.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/src/api/post.rs b/server/src/api/post.rs
index e19d4ee9..1602626b 100644
--- a/server/src/api/post.rs
+++ b/server/src/api/post.rs
@@ -44,9 +44,9 @@ pub struct GetPosts {
auth: Option<String>,
}
-#[derive(Serialize, Deserialize)]
+#[derive(Serialize, Deserialize, Debug)]
pub struct GetPostsResponse {
- posts: Vec<PostView>,
+ pub posts: Vec<PostView>,
}
#[derive(Serialize, Deserialize)]
@@ -222,7 +222,6 @@ impl Perform<GetPostsResponse> for Oper<GetPosts> {
let data: &GetPosts = &self.data;
if Settings::get().federation_enabled {
- dbg!(&data);
// TODO: intercept here (but the type is wrong)
//get_remote_community_posts(get_posts.community_id.unwrap())
}