Fix syntatx errors

pull/3755/head
dullbananas 10 months ago committed by GitHub
parent 4d2c0ca19a
commit d942f099de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,7 @@ extern crate macro_rules_attribute;
#[macro_use]
extern crate paste;
#[cfg(feature = "full)]
#[cfg(feature = "full")]
#[macro_use]
mod without_id;
pub mod aggregates;

@ -28,7 +28,7 @@ fn queries<'a>(
) -> Queries<impl ReadFn<'a, LocalUserView, ReadBy<'a>>, impl ListFn<'a, LocalUserView, ListMode>> {
let selection = (
local_user::all_columns,
PersonWithoutId::as_select(,
PersonWithoutId::as_select(),
person_aggregates::all_columns,
);

@ -30,7 +30,7 @@ use lemmy_db_schema::{
source::{
comment::CommentWithoutId,
comment_reply::CommentReply,
community::{CommunityWithoutId, CommunityFollower},
community::{CommunityFollower, CommunityWithoutId},
person::PersonWithoutId,
post::PostWithoutId,
},

@ -30,7 +30,7 @@ use lemmy_db_schema::{
},
source::{
comment::CommentWithoutId,
community::{CommunityWithoutId, CommunityFollower},
community::{CommunityFollower, CommunityWithoutId},
person::PersonWithoutId,
person_mention::PersonMention,
post::PostWithoutId,

Loading…
Cancel
Save