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]
|
#[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;
|
||||||
|
|
|
@ -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,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue