let community_id = data.community_id;
let community_name = data.community_name.to_owned();
+ let saved_only = data.saved_only;
let page = data.page;
let limit = data.limit;
let comments = blocking(context.pool(), move |conn| {
CommentQueryBuilder::create(conn)
.listing_type(type_)
.sort(&sort)
+ .saved_only(saved_only)
.community_id(community_id)
.community_name(community_name)
.my_person_id(person_id)
.my_person_id(person_id)
.sort(&sort)
.saved_only(saved_only)
+ .community_id(community_id)
.page(page)
.limit(limit);
let limit = data.limit;
let community_id = data.community_id;
let community_name = data.community_name.to_owned();
+ let saved_only = data.saved_only;
+
let posts = match blocking(context.pool(), move |conn| {
PostQueryBuilder::create(conn)
.listing_type(&type_)
.show_nsfw(show_nsfw)
.community_id(community_id)
.community_name(community_name)
+ .saved_only(saved_only)
.my_person_id(person_id)
.page(page)
.limit(limit)
pub limit: Option<i64>,
pub community_id: Option<CommunityId>,
pub community_name: Option<String>,
+ pub saved_only: bool,
pub auth: Option<String>,
}
pub limit: Option<i64>,
pub community_id: Option<CommunityId>,
pub community_name: Option<String>,
+ pub saved_only: bool,
pub auth: Option<String>,
}