Exclude removed/deleted posts from community outbox (#2184)

This commit is contained in:
Nutomic 2022-04-01 18:18:25 +00:00 committed by GitHub
parent 589d952a95
commit 56b275acd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,6 +50,8 @@ impl Post {
use crate::schema::post::dsl::*;
post
.filter(community_id.eq(the_community_id))
.filter(deleted.eq(false))
.filter(removed.eq(false))
.then_order_by(published.desc())
.then_order_by(stickied.desc())
.limit(20)