Remove pointless community follower sort. (#1939)

pull/1937/head
Dessalines 3 years ago committed by GitHub
parent 3e062a9959
commit 88c7b95d03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,6 @@ impl CommunityFollowerView {
Person::safe_columns_tuple(),
))
.filter(community_follower::community_id.eq(community_id))
.order_by(community_follower::published)
.load::<CommunityFollowerViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))
@ -43,7 +42,6 @@ impl CommunityFollowerView {
Person::safe_columns_tuple(),
))
.filter(community_follower::person_id.eq(person_id))
.order_by(community_follower::published)
.load::<CommunityFollowerViewTuple>(conn)?;
Ok(Self::from_tuple_to_vec(res))

Loading…
Cancel
Save