summaryrefslogtreecommitdiffstats
path: root/server/src/db/user_mention_view.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/db/user_mention_view.rs')
-rw-r--r--server/src/db/user_mention_view.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/db/user_mention_view.rs b/server/src/db/user_mention_view.rs
index 45541861..7a45d222 100644
--- a/server/src/db/user_mention_view.rs
+++ b/server/src/db/user_mention_view.rs
@@ -20,6 +20,7 @@ table! {
banned -> Bool,
banned_from_community -> Bool,
creator_name -> Varchar,
+ creator_avatar -> Nullable<Text>,
score -> BigInt,
upvotes -> BigInt,
downvotes -> BigInt,
@@ -50,6 +51,7 @@ pub struct UserMentionView {
pub banned: bool,
pub banned_from_community: bool,
pub creator_name: String,
+ pub creator_avatar: Option<String>,
pub score: i64,
pub upvotes: i64,
pub downvotes: i64,
@@ -78,7 +80,7 @@ impl<'a> UserMentionQueryBuilder<'a> {
UserMentionQueryBuilder {
conn,
query,
- for_user_id: for_user_id,
+ for_user_id,
sort: &SortType::New,
unread_only: false,
page: None,