mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 20:31:19 +00:00
Update community_moderator_view.rs
This commit is contained in:
parent
37fcfc6138
commit
84142f031c
1 changed files with 4 additions and 1 deletions
|
@ -88,7 +88,10 @@ impl CommunityModeratorView {
|
||||||
// A hacky workaround instead of group_bys
|
// A hacky workaround instead of group_bys
|
||||||
// https://stackoverflow.com/questions/24042359/how-to-join-only-one-row-in-joined-table-with-postgres
|
// https://stackoverflow.com/questions/24042359/how-to-join-only-one-row-in-joined-table-with-postgres
|
||||||
.distinct_on(community_moderator::community_id)
|
.distinct_on(community_moderator::community_id)
|
||||||
.order_by(community_moderator::published)
|
.order_by((
|
||||||
|
community_moderator::community_id,
|
||||||
|
community_moderator::published,
|
||||||
|
))
|
||||||
.load::<CommunityModeratorView>(conn)
|
.load::<CommunityModeratorView>(conn)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue