summaryrefslogtreecommitdiffstats
path: root/server/src/db/post_view.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/db/post_view.rs')
-rw-r--r--server/src/db/post_view.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/src/db/post_view.rs b/server/src/db/post_view.rs
index 615b9b0d..d05eecca 100644
--- a/server/src/db/post_view.rs
+++ b/server/src/db/post_view.rs
@@ -21,6 +21,7 @@ table! {
banned_from_community -> Bool,
stickied -> Bool,
creator_name -> Varchar,
+ creator_avatar -> Nullable<Text>,
community_name -> Varchar,
community_removed -> Bool,
community_deleted -> Bool,
@@ -59,6 +60,7 @@ pub struct PostView {
pub banned_from_community: bool,
pub stickied: bool,
pub creator_name: String,
+ pub creator_avatar: Option<String>,
pub community_name: String,
pub community_removed: bool,
pub community_deleted: bool,
@@ -303,6 +305,7 @@ mod tests {
preferred_username: None,
password_encrypted: "nope".into(),
email: None,
+ avatar: None,
updated: None,
admin: false,
banned: false,
@@ -377,6 +380,7 @@ mod tests {
body: None,
creator_id: inserted_user.id,
creator_name: user_name.to_owned(),
+ creator_avatar: None,
banned: false,
banned_from_community: false,
community_id: inserted_community.id,
@@ -414,6 +418,7 @@ mod tests {
stickied: false,
creator_id: inserted_user.id,
creator_name: user_name.to_owned(),
+ creator_avatar: None,
banned: false,
banned_from_community: false,
community_id: inserted_community.id,