Fix syntatx errors

pull/3755/head
dullbananas 2023-08-01 11:16:54 -07:00 committed by GitHub
parent 4d2c0ca19a
commit d942f099de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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,
);

View File

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

View File

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