mirror of https://github.com/LemmyNet/lemmy.git
Fix syntatx errors
parent
4d2c0ca19a
commit
d942f099de
|
@ -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…
Reference in New Issue