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] #[macro_use]
extern crate paste; extern crate paste;
#[cfg(feature = "full)] #[cfg(feature = "full")]
#[macro_use] #[macro_use]
mod without_id; mod without_id;
pub mod aggregates; pub mod aggregates;

View File

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

View File

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

View File

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