From aef9786fa719760e0f25f75d394e000c2d59f0c6 Mon Sep 17 00:00:00 2001 From: Tmpod <35771816+Tmpod@users.noreply.github.com> Date: Tue, 19 Oct 2021 17:37:01 +0100 Subject: [PATCH] Add both (De)Serialize to all models (#1851) --- crates/api_common/src/comment.rs | 30 ++++---- crates/api_common/src/community.rs | 34 ++++----- crates/api_common/src/person.rs | 76 +++++++++---------- crates/api_common/src/post.rs | 40 +++++----- crates/api_common/src/site.rs | 34 ++++----- crates/api_common/src/websocket.rs | 16 ++-- .../src/aggregates/comment_aggregates.rs | 6 +- .../src/aggregates/community_aggregates.rs | 6 +- .../src/aggregates/person_aggregates.rs | 6 +- .../src/aggregates/post_aggregates.rs | 6 +- .../src/aggregates/site_aggregates.rs | 6 +- crates/db_schema/src/source/comment.rs | 10 ++- crates/db_schema/src/source/community.rs | 6 +- .../db_schema/src/source/community_block.rs | 6 +- crates/db_schema/src/source/local_user.rs | 6 +- crates/db_schema/src/source/moderator.rs | 22 +++--- crates/db_schema/src/source/person.rs | 14 ++-- crates/db_schema/src/source/person_block.rs | 6 +- crates/db_schema/src/source/person_mention.rs | 6 +- crates/db_schema/src/source/post.rs | 4 +- .../db_schema/src/source/private_message.rs | 6 +- crates/db_schema/src/source/site.rs | 4 +- crates/db_views/src/comment_report_view.rs | 4 +- crates/db_views/src/comment_view.rs | 4 +- crates/db_views/src/local_user_view.rs | 6 +- crates/db_views/src/post_report_view.rs | 4 +- crates/db_views/src/post_view.rs | 4 +- crates/db_views/src/private_message_view.rs | 4 +- crates/db_views/src/site_view.rs | 4 +- .../src/community_block_view.rs | 4 +- .../src/community_follower_view.rs | 4 +- .../src/community_moderator_view.rs | 4 +- .../src/community_person_ban_view.rs | 4 +- crates/db_views_actor/src/community_view.rs | 4 +- .../db_views_actor/src/person_block_view.rs | 4 +- .../db_views_actor/src/person_mention_view.rs | 4 +- crates/db_views_actor/src/person_view.rs | 4 +- .../src/mod_add_community_view.rs | 4 +- crates/db_views_moderator/src/mod_add_view.rs | 4 +- .../src/mod_ban_from_community_view.rs | 4 +- crates/db_views_moderator/src/mod_ban_view.rs | 4 +- .../src/mod_lock_post_view.rs | 4 +- .../src/mod_remove_comment_view.rs | 4 +- .../src/mod_remove_community_view.rs | 4 +- .../src/mod_remove_post_view.rs | 4 +- .../src/mod_sticky_post_view.rs | 4 +- .../src/mod_transfer_community_view.rs | 4 +- 47 files changed, 237 insertions(+), 215 deletions(-) diff --git a/crates/api_common/src/comment.rs b/crates/api_common/src/comment.rs index 55564058..2739b955 100644 --- a/crates/api_common/src/comment.rs +++ b/crates/api_common/src/comment.rs @@ -2,7 +2,7 @@ use lemmy_db_schema::{CommentId, CommentReportId, CommunityId, LocalUserId, Post use lemmy_db_views::{comment_report_view::CommentReportView, comment_view::CommentView}; use serde::{Deserialize, Serialize}; -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreateComment { pub content: String, pub post_id: PostId, @@ -11,7 +11,7 @@ pub struct CreateComment { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct EditComment { pub content: String, pub comment_id: CommentId, @@ -19,14 +19,14 @@ pub struct EditComment { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct DeleteComment { pub comment_id: CommentId, pub deleted: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct RemoveComment { pub comment_id: CommentId, pub removed: bool, @@ -34,35 +34,35 @@ pub struct RemoveComment { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct MarkCommentAsRead { pub comment_id: CommentId, pub read: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct SaveComment { pub comment_id: CommentId, pub save: bool, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct CommentResponse { pub comment_view: CommentView, pub recipient_ids: Vec, pub form_id: Option, // An optional front end ID, to tell which is coming back } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreateCommentLike { pub comment_id: CommentId, pub score: i16, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetComments { pub type_: Option, pub sort: Option, @@ -74,31 +74,31 @@ pub struct GetComments { pub auth: Option, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetCommentsResponse { pub comments: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreateCommentReport { pub comment_id: CommentId, pub reason: String, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct CommentReportResponse { pub comment_report_view: CommentReportView, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct ResolveCommentReport { pub report_id: CommentReportId, pub resolved: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct ListCommentReports { pub page: Option, pub limit: Option, @@ -109,7 +109,7 @@ pub struct ListCommentReports { pub auth: String, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct ListCommentReportsResponse { pub comment_reports: Vec, } diff --git a/crates/api_common/src/community.rs b/crates/api_common/src/community.rs index 68ba2ff6..eea4bc7b 100644 --- a/crates/api_common/src/community.rs +++ b/crates/api_common/src/community.rs @@ -6,7 +6,7 @@ use lemmy_db_views_actor::{ }; use serde::{Deserialize, Serialize}; -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetCommunity { pub id: Option, /// Example: star_trek , or star_trek@xyz.tld @@ -14,14 +14,14 @@ pub struct GetCommunity { pub auth: Option, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetCommunityResponse { pub community_view: CommunityView, pub moderators: Vec, pub online: usize, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreateCommunity { pub name: String, pub title: String, @@ -32,12 +32,12 @@ pub struct CreateCommunity { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct CommunityResponse { pub community_view: CommunityView, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct ListCommunities { pub type_: Option, pub sort: Option, @@ -46,12 +46,12 @@ pub struct ListCommunities { pub auth: Option, } -#[derive(Serialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct ListCommunitiesResponse { pub communities: Vec, } -#[derive(Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct BanFromCommunity { pub community_id: CommunityId, pub person_id: PersonId, @@ -62,13 +62,13 @@ pub struct BanFromCommunity { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct BanFromCommunityResponse { pub person_view: PersonViewSafe, pub banned: bool, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct AddModToCommunity { pub community_id: CommunityId, pub person_id: PersonId, @@ -76,12 +76,12 @@ pub struct AddModToCommunity { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct AddModToCommunityResponse { pub moderators: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct EditCommunity { pub community_id: CommunityId, pub title: Option, @@ -92,14 +92,14 @@ pub struct EditCommunity { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct DeleteCommunity { pub community_id: CommunityId, pub deleted: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct RemoveCommunity { pub community_id: CommunityId, pub removed: bool, @@ -108,27 +108,27 @@ pub struct RemoveCommunity { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct FollowCommunity { pub community_id: CommunityId, pub follow: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct BlockCommunity { pub community_id: CommunityId, pub block: bool, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct BlockCommunityResponse { pub community_view: CommunityView, pub blocked: bool, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct TransferCommunity { pub community_id: CommunityId, pub person_id: PersonId, diff --git a/crates/api_common/src/person.rs b/crates/api_common/src/person.rs index af7212ba..ce0c1bf8 100644 --- a/crates/api_common/src/person.rs +++ b/crates/api_common/src/person.rs @@ -10,14 +10,14 @@ use lemmy_db_views_actor::{ }; use serde::{Deserialize, Serialize}; -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct Login { pub username_or_email: String, pub password: String, } use lemmy_db_schema::{CommunityId, PersonId, PersonMentionId, PrivateMessageId}; -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct Register { pub username: String, pub password: String, @@ -29,22 +29,22 @@ pub struct Register { pub honeypot: Option, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetCaptcha {} -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetCaptchaResponse { pub ok: Option, // Will be None if captchas are disabled } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct CaptchaResponse { pub png: String, // A Base64 encoded png pub wav: String, // A Base64 encoded wav audio pub uuid: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct SaveUserSettings { pub show_nsfw: Option, pub show_scores: Option, @@ -67,7 +67,7 @@ pub struct SaveUserSettings { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct ChangePassword { pub new_password: String, pub new_password_verify: String, @@ -75,12 +75,12 @@ pub struct ChangePassword { pub auth: String, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct LoginResponse { pub jwt: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetPersonDetails { pub person_id: Option, // One of these two are required /// Example: dessalines , or dessalines@xyz.tld @@ -93,7 +93,7 @@ pub struct GetPersonDetails { pub auth: Option, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetPersonDetailsResponse { pub person_view: PersonViewSafe, pub comments: Vec, @@ -101,34 +101,34 @@ pub struct GetPersonDetailsResponse { pub moderates: Vec, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetRepliesResponse { pub replies: Vec, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetPersonMentionsResponse { pub mentions: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct MarkAllAsRead { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct AddAdmin { pub person_id: PersonId, pub added: bool, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct AddAdminResponse { pub admins: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct BanPerson { pub person_id: PersonId, pub ban: bool, @@ -138,26 +138,26 @@ pub struct BanPerson { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct BanPersonResponse { pub person_view: PersonViewSafe, pub banned: bool, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct BlockPerson { pub person_id: PersonId, pub block: bool, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct BlockPersonResponse { pub person_view: PersonViewSafe, pub blocked: bool, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetReplies { pub sort: Option, pub page: Option, @@ -166,7 +166,7 @@ pub struct GetReplies { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetPersonMentions { pub sort: Option, pub page: Option, @@ -175,68 +175,68 @@ pub struct GetPersonMentions { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct MarkPersonMentionAsRead { pub person_mention_id: PersonMentionId, pub read: bool, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PersonMentionResponse { pub person_mention_view: PersonMentionView, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct DeleteAccount { pub password: String, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct PasswordReset { pub email: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PasswordResetResponse {} -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct PasswordChange { pub token: String, pub password: String, pub password_verify: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreatePrivateMessage { pub content: String, pub recipient_id: PersonId, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct EditPrivateMessage { pub private_message_id: PrivateMessageId, pub content: String, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct DeletePrivateMessage { pub private_message_id: PrivateMessageId, pub deleted: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct MarkPrivateMessageAsRead { pub private_message_id: PrivateMessageId, pub read: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetPrivateMessages { pub unread_only: Option, pub page: Option, @@ -244,35 +244,35 @@ pub struct GetPrivateMessages { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PrivateMessagesResponse { pub private_messages: Vec, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PrivateMessageResponse { pub private_message_view: PrivateMessageView, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetReportCount { pub community_id: Option, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct GetReportCountResponse { pub community_id: Option, pub comment_reports: i64, pub post_reports: i64, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetUnreadCount { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct GetUnreadCountResponse { pub replies: i64, pub mentions: i64, diff --git a/crates/api_common/src/post.rs b/crates/api_common/src/post.rs index a4e823bd..1a53ef58 100644 --- a/crates/api_common/src/post.rs +++ b/crates/api_common/src/post.rs @@ -12,7 +12,7 @@ use lemmy_utils::request::SiteMetadata; use serde::{Deserialize, Serialize}; use url::Url; -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct CreatePost { pub name: String, pub community_id: CommunityId, @@ -23,18 +23,18 @@ pub struct CreatePost { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PostResponse { pub post_view: PostView, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetPost { pub id: PostId, pub auth: Option, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetPostResponse { pub post_view: PostView, pub community_view: CommunityView, @@ -43,7 +43,7 @@ pub struct GetPostResponse { pub online: usize, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct GetPosts { pub type_: Option, pub sort: Option, @@ -55,19 +55,19 @@ pub struct GetPosts { pub auth: Option, } -#[derive(Serialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct GetPostsResponse { pub posts: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreatePostLike { pub post_id: PostId, pub score: i16, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct EditPost { pub post_id: PostId, pub name: Option, @@ -77,14 +77,14 @@ pub struct EditPost { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct DeletePost { pub post_id: PostId, pub deleted: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct RemovePost { pub post_id: PostId, pub removed: bool, @@ -92,47 +92,47 @@ pub struct RemovePost { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct LockPost { pub post_id: PostId, pub locked: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct StickyPost { pub post_id: PostId, pub stickied: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct SavePost { pub post_id: PostId, pub save: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreatePostReport { pub post_id: PostId, pub reason: String, pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PostReportResponse { pub post_report_view: PostReportView, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct ResolvePostReport { pub report_id: PostReportId, pub resolved: bool, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct ListPostReports { pub page: Option, pub limit: Option, @@ -143,17 +143,17 @@ pub struct ListPostReports { pub auth: String, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct ListPostReportsResponse { pub post_reports: Vec, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct GetSiteMetadata { pub url: Url, } -#[derive(Serialize, Clone, Debug)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct GetSiteMetadataResponse { pub metadata: SiteMetadata, } diff --git a/crates/api_common/src/site.rs b/crates/api_common/src/site.rs index 03f86f3d..e1e75f9e 100644 --- a/crates/api_common/src/site.rs +++ b/crates/api_common/src/site.rs @@ -27,7 +27,7 @@ use lemmy_db_views_moderator::{ }; use serde::{Deserialize, Serialize}; -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct Search { pub q: String, pub community_id: Option, @@ -41,7 +41,7 @@ pub struct Search { pub auth: Option, } -#[derive(Serialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct SearchResponse { pub type_: String, pub comments: Vec, @@ -50,13 +50,13 @@ pub struct SearchResponse { pub users: Vec, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct ResolveObject { pub q: String, pub auth: Option, } -#[derive(Serialize, Default)] +#[derive(Serialize, Deserialize, Default)] pub struct ResolveObjectResponse { pub comment: Option, pub post: Option, @@ -64,7 +64,7 @@ pub struct ResolveObjectResponse { pub person: Option, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetModlog { pub mod_person_id: Option, pub community_id: Option, @@ -72,7 +72,7 @@ pub struct GetModlog { pub limit: Option, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetModlogResponse { pub removed_posts: Vec, pub locked_posts: Vec, @@ -86,7 +86,7 @@ pub struct GetModlogResponse { pub added: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct CreateSite { pub name: String, pub sidebar: Option, @@ -100,7 +100,7 @@ pub struct CreateSite { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct EditSite { pub name: Option, pub sidebar: Option, @@ -114,17 +114,17 @@ pub struct EditSite { pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetSite { pub auth: Option, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct SiteResponse { pub site_view: SiteView, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetSiteResponse { pub site_view: Option, // Because the site might not be set up yet pub admins: Vec, @@ -135,7 +135,7 @@ pub struct GetSiteResponse { pub federated_instances: Option, // Federation may be disabled } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct MyUserInfo { pub local_user_view: LocalUserSettingsView, pub follows: Vec, @@ -144,29 +144,29 @@ pub struct MyUserInfo { pub person_blocks: Vec, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct TransferSite { pub person_id: PersonId, pub auth: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct GetSiteConfig { pub auth: String, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct GetSiteConfigResponse { pub config_hjson: String, } -#[derive(Deserialize)] +#[derive(Serialize, Deserialize)] pub struct SaveSiteConfig { pub config_hjson: String, pub auth: String, } -#[derive(Serialize)] +#[derive(Serialize, Deserialize)] pub struct FederatedInstances { pub linked: Vec, pub allowed: Option>, diff --git a/crates/api_common/src/websocket.rs b/crates/api_common/src/websocket.rs index c64a56c0..f88819cd 100644 --- a/crates/api_common/src/websocket.rs +++ b/crates/api_common/src/websocket.rs @@ -1,42 +1,42 @@ use lemmy_db_schema::{CommunityId, PostId}; use serde::{Deserialize, Serialize}; -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct UserJoin { pub auth: String, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct UserJoinResponse { pub joined: bool, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct CommunityJoin { pub community_id: CommunityId, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct CommunityJoinResponse { pub joined: bool, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct ModJoin { pub community_id: CommunityId, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct ModJoinResponse { pub joined: bool, } -#[derive(Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug)] pub struct PostJoin { pub post_id: PostId, } -#[derive(Serialize, Clone)] +#[derive(Serialize, Deserialize, Clone)] pub struct PostJoinResponse { pub joined: bool, } diff --git a/crates/db_queries/src/aggregates/comment_aggregates.rs b/crates/db_queries/src/aggregates/comment_aggregates.rs index 898c57da..4fbc646b 100644 --- a/crates/db_queries/src/aggregates/comment_aggregates.rs +++ b/crates/db_queries/src/aggregates/comment_aggregates.rs @@ -1,8 +1,10 @@ use diesel::{result::Error, *}; use lemmy_db_schema::{schema::comment_aggregates, CommentId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Clone)] +#[derive( + Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, Clone, +)] #[table_name = "comment_aggregates"] pub struct CommentAggregates { pub id: i32, diff --git a/crates/db_queries/src/aggregates/community_aggregates.rs b/crates/db_queries/src/aggregates/community_aggregates.rs index c668c15a..d8865d40 100644 --- a/crates/db_queries/src/aggregates/community_aggregates.rs +++ b/crates/db_queries/src/aggregates/community_aggregates.rs @@ -1,8 +1,10 @@ use diesel::{result::Error, *}; use lemmy_db_schema::{schema::community_aggregates, CommunityId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Clone)] +#[derive( + Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, Clone, +)] #[table_name = "community_aggregates"] pub struct CommunityAggregates { pub id: i32, diff --git a/crates/db_queries/src/aggregates/person_aggregates.rs b/crates/db_queries/src/aggregates/person_aggregates.rs index 56d72d38..16d480de 100644 --- a/crates/db_queries/src/aggregates/person_aggregates.rs +++ b/crates/db_queries/src/aggregates/person_aggregates.rs @@ -1,8 +1,10 @@ use diesel::{result::Error, *}; use lemmy_db_schema::{schema::person_aggregates, PersonId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Clone)] +#[derive( + Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, Clone, +)] #[table_name = "person_aggregates"] pub struct PersonAggregates { pub id: i32, diff --git a/crates/db_queries/src/aggregates/post_aggregates.rs b/crates/db_queries/src/aggregates/post_aggregates.rs index 2fcb6f5d..323b55ab 100644 --- a/crates/db_queries/src/aggregates/post_aggregates.rs +++ b/crates/db_queries/src/aggregates/post_aggregates.rs @@ -1,8 +1,10 @@ use diesel::{result::Error, *}; use lemmy_db_schema::{schema::post_aggregates, PostId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Clone)] +#[derive( + Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, Clone, +)] #[table_name = "post_aggregates"] pub struct PostAggregates { pub id: i32, diff --git a/crates/db_queries/src/aggregates/site_aggregates.rs b/crates/db_queries/src/aggregates/site_aggregates.rs index 109e4bd6..af0f7cb4 100644 --- a/crates/db_queries/src/aggregates/site_aggregates.rs +++ b/crates/db_queries/src/aggregates/site_aggregates.rs @@ -1,8 +1,10 @@ use diesel::{result::Error, *}; use lemmy_db_schema::schema::site_aggregates; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Clone)] +#[derive( + Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, Clone, +)] #[table_name = "site_aggregates"] pub struct SiteAggregates { pub id: i32, diff --git a/crates/db_schema/src/source/comment.rs b/crates/db_schema/src/source/comment.rs index 88c47d3a..63062d1d 100644 --- a/crates/db_schema/src/source/comment.rs +++ b/crates/db_schema/src/source/comment.rs @@ -10,7 +10,7 @@ use chrono::NaiveDateTime; use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl}; use lemmy_apub_lib::traits::ApubObject; use lemmy_utils::LemmyError; -use serde::Serialize; +use serde::{Deserialize, Serialize}; use url::Url; // WITH RECURSIVE MyTree AS ( @@ -20,7 +20,9 @@ use url::Url; // ) // SELECT * FROM MyTree; -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[belongs_to(Post)] #[table_name = "comment"] pub struct Comment { @@ -38,7 +40,9 @@ pub struct Comment { pub local: bool, } -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[belongs_to(Post)] #[table_name = "comment_alias_1"] pub struct CommentAlias1 { diff --git a/crates/db_schema/src/source/community.rs b/crates/db_schema/src/source/community.rs index 0018e3f0..f90bab13 100644 --- a/crates/db_schema/src/source/community.rs +++ b/crates/db_schema/src/source/community.rs @@ -8,10 +8,10 @@ use chrono::NaiveDateTime; use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl}; use lemmy_apub_lib::traits::{ActorType, ApubObject}; use lemmy_utils::LemmyError; -use serde::Serialize; +use serde::{Deserialize, Serialize}; use url::Url; -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "community"] pub struct Community { pub id: CommunityId, @@ -36,7 +36,7 @@ pub struct Community { } /// A safe representation of community, without the sensitive info -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "community"] pub struct CommunitySafe { pub id: CommunityId, diff --git a/crates/db_schema/src/source/community_block.rs b/crates/db_schema/src/source/community_block.rs index 6aa630b8..35dfbd8a 100644 --- a/crates/db_schema/src/source/community_block.rs +++ b/crates/db_schema/src/source/community_block.rs @@ -5,9 +5,11 @@ use crate::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[table_name = "community_block"] #[belongs_to(Community)] pub struct CommunityBlock { diff --git a/crates/db_schema/src/source/local_user.rs b/crates/db_schema/src/source/local_user.rs index df83e268..d9fce8da 100644 --- a/crates/db_schema/src/source/local_user.rs +++ b/crates/db_schema/src/source/local_user.rs @@ -1,7 +1,7 @@ use crate::{schema::local_user, LocalUserId, PersonId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "local_user"] pub struct LocalUser { pub id: LocalUserId, @@ -43,7 +43,7 @@ pub struct LocalUserForm { } /// A local user view that removes password encrypted -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "local_user"] pub struct LocalUserSettings { pub id: LocalUserId, diff --git a/crates/db_schema/src/source/moderator.rs b/crates/db_schema/src/source/moderator.rs index 66889ae5..adde7035 100644 --- a/crates/db_schema/src/source/moderator.rs +++ b/crates/db_schema/src/source/moderator.rs @@ -16,9 +16,9 @@ use crate::{ PersonId, PostId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_remove_post"] pub struct ModRemovePost { pub id: i32, @@ -38,7 +38,7 @@ pub struct ModRemovePostForm { pub removed: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_lock_post"] pub struct ModLockPost { pub id: i32, @@ -56,7 +56,7 @@ pub struct ModLockPostForm { pub locked: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_sticky_post"] pub struct ModStickyPost { pub id: i32, @@ -74,7 +74,7 @@ pub struct ModStickyPostForm { pub stickied: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_remove_comment"] pub struct ModRemoveComment { pub id: i32, @@ -94,7 +94,7 @@ pub struct ModRemoveCommentForm { pub removed: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_remove_community"] pub struct ModRemoveCommunity { pub id: i32, @@ -116,7 +116,7 @@ pub struct ModRemoveCommunityForm { pub expires: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_ban_from_community"] pub struct ModBanFromCommunity { pub id: i32, @@ -140,7 +140,7 @@ pub struct ModBanFromCommunityForm { pub expires: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_ban"] pub struct ModBan { pub id: i32, @@ -162,7 +162,7 @@ pub struct ModBanForm { pub expires: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_add_community"] pub struct ModAddCommunity { pub id: i32, @@ -182,7 +182,7 @@ pub struct ModAddCommunityForm { pub removed: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_transfer_community"] pub struct ModTransferCommunity { pub id: i32, @@ -202,7 +202,7 @@ pub struct ModTransferCommunityForm { pub removed: Option, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "mod_add"] pub struct ModAdd { pub id: i32, diff --git a/crates/db_schema/src/source/person.rs b/crates/db_schema/src/source/person.rs index 3b065b93..03fb821f 100644 --- a/crates/db_schema/src/source/person.rs +++ b/crates/db_schema/src/source/person.rs @@ -7,10 +7,10 @@ use chrono::NaiveDateTime; use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl}; use lemmy_apub_lib::traits::{ActorType, ApubObject}; use lemmy_utils::LemmyError; -use serde::Serialize; +use serde::{Deserialize, Serialize}; use url::Url; -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person"] pub struct Person { pub id: PersonId, @@ -36,7 +36,7 @@ pub struct Person { } /// A safe representation of person, without the sensitive info -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person"] pub struct PersonSafe { pub id: PersonId, @@ -58,7 +58,7 @@ pub struct PersonSafe { pub bot_account: bool, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person_alias_1"] pub struct PersonAlias1 { pub id: PersonId, @@ -83,7 +83,7 @@ pub struct PersonAlias1 { pub bot_account: bool, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person_alias_1"] pub struct PersonSafeAlias1 { pub id: PersonId, @@ -105,7 +105,7 @@ pub struct PersonSafeAlias1 { pub bot_account: bool, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person_alias_2"] pub struct PersonAlias2 { pub id: PersonId, @@ -130,7 +130,7 @@ pub struct PersonAlias2 { pub bot_account: bool, } -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "person_alias_1"] pub struct PersonSafeAlias2 { pub id: PersonId, diff --git a/crates/db_schema/src/source/person_block.rs b/crates/db_schema/src/source/person_block.rs index cedf7de1..c0ad15ca 100644 --- a/crates/db_schema/src/source/person_block.rs +++ b/crates/db_schema/src/source/person_block.rs @@ -1,7 +1,9 @@ use crate::{schema::person_block, PersonBlockId, PersonId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[table_name = "person_block"] pub struct PersonBlock { pub id: PersonBlockId, diff --git a/crates/db_schema/src/source/person_mention.rs b/crates/db_schema/src/source/person_mention.rs index 61ed32b0..d65a13b9 100644 --- a/crates/db_schema/src/source/person_mention.rs +++ b/crates/db_schema/src/source/person_mention.rs @@ -5,9 +5,11 @@ use crate::{ PersonId, PersonMentionId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[belongs_to(Comment)] #[table_name = "person_mention"] pub struct PersonMention { diff --git a/crates/db_schema/src/source/post.rs b/crates/db_schema/src/source/post.rs index c0c42c83..a09e8839 100644 --- a/crates/db_schema/src/source/post.rs +++ b/crates/db_schema/src/source/post.rs @@ -9,10 +9,10 @@ use chrono::NaiveDateTime; use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl}; use lemmy_apub_lib::traits::ApubObject; use lemmy_utils::LemmyError; -use serde::Serialize; +use serde::{Deserialize, Serialize}; use url::Url; -#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)] +#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)] #[table_name = "post"] pub struct Post { pub id: PostId, diff --git a/crates/db_schema/src/source/private_message.rs b/crates/db_schema/src/source/private_message.rs index a0d1b9d1..a867ce93 100644 --- a/crates/db_schema/src/source/private_message.rs +++ b/crates/db_schema/src/source/private_message.rs @@ -3,10 +3,12 @@ use chrono::NaiveDateTime; use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl}; use lemmy_apub_lib::traits::ApubObject; use lemmy_utils::LemmyError; -use serde::Serialize; +use serde::{Deserialize, Serialize}; use url::Url; -#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)] +#[derive( + Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize, +)] #[table_name = "private_message"] pub struct PrivateMessage { pub id: PrivateMessageId, diff --git a/crates/db_schema/src/source/site.rs b/crates/db_schema/src/source/site.rs index 19c41bf7..ec9dee84 100644 --- a/crates/db_schema/src/source/site.rs +++ b/crates/db_schema/src/source/site.rs @@ -1,7 +1,7 @@ use crate::{schema::site, DbUrl, PersonId}; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Queryable, Identifiable, PartialEq, Debug, Clone, Serialize)] +#[derive(Queryable, Identifiable, PartialEq, Debug, Clone, Serialize, Deserialize)] #[table_name = "site"] pub struct Site { pub id: i32, diff --git a/crates/db_views/src/comment_report_view.rs b/crates/db_views/src/comment_report_view.rs index 682eaaa5..7c2f9957 100644 --- a/crates/db_views/src/comment_report_view.rs +++ b/crates/db_views/src/comment_report_view.rs @@ -31,9 +31,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct CommentReportView { pub comment_report: CommentReport, pub comment: Comment, diff --git a/crates/db_views/src/comment_view.rs b/crates/db_views/src/comment_view.rs index e6175280..2468c653 100644 --- a/crates/db_views/src/comment_view.rs +++ b/crates/db_views/src/comment_view.rs @@ -39,9 +39,9 @@ use lemmy_db_schema::{ PersonId, PostId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct CommentView { pub comment: Comment, pub creator: PersonSafe, diff --git a/crates/db_views/src/local_user_view.rs b/crates/db_views/src/local_user_view.rs index 63dedb86..0e4d872a 100644 --- a/crates/db_views/src/local_user_view.rs +++ b/crates/db_views/src/local_user_view.rs @@ -9,9 +9,9 @@ use lemmy_db_schema::{ LocalUserId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct LocalUserView { pub local_user: LocalUser, pub person: Person, @@ -117,7 +117,7 @@ impl LocalUserView { } } -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct LocalUserSettingsView { pub local_user: LocalUserSettings, pub person: PersonSafe, diff --git a/crates/db_views/src/post_report_view.rs b/crates/db_views/src/post_report_view.rs index de587c7c..a8604ea9 100644 --- a/crates/db_views/src/post_report_view.rs +++ b/crates/db_views/src/post_report_view.rs @@ -29,9 +29,9 @@ use lemmy_db_schema::{ PersonId, PostReportId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct PostReportView { pub post_report: PostReport, pub post: Post, diff --git a/crates/db_views/src/post_view.rs b/crates/db_views/src/post_view.rs index dc55e6ec..f42a1659 100644 --- a/crates/db_views/src/post_view.rs +++ b/crates/db_views/src/post_view.rs @@ -36,9 +36,9 @@ use lemmy_db_schema::{ PostId, }; use log::debug; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct PostView { pub post: Post, pub creator: PersonSafe, diff --git a/crates/db_views/src/private_message_view.rs b/crates/db_views/src/private_message_view.rs index 86c1b79c..7e322bbc 100644 --- a/crates/db_views/src/private_message_view.rs +++ b/crates/db_views/src/private_message_view.rs @@ -10,9 +10,9 @@ use lemmy_db_schema::{ PrivateMessageId, }; use log::debug; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct PrivateMessageView { pub private_message: PrivateMessage, pub creator: PersonSafe, diff --git a/crates/db_views/src/site_view.rs b/crates/db_views/src/site_view.rs index 87fded01..d0c2ee82 100644 --- a/crates/db_views/src/site_view.rs +++ b/crates/db_views/src/site_view.rs @@ -7,9 +7,9 @@ use lemmy_db_schema::{ site::Site, }, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct SiteView { pub site: Site, pub creator: PersonSafe, diff --git a/crates/db_views_actor/src/community_block_view.rs b/crates/db_views_actor/src/community_block_view.rs index 5e24bcaa..3046b0c2 100644 --- a/crates/db_views_actor/src/community_block_view.rs +++ b/crates/db_views_actor/src/community_block_view.rs @@ -8,9 +8,9 @@ use lemmy_db_schema::{ }, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct CommunityBlockView { pub person: PersonSafe, pub community: CommunitySafe, diff --git a/crates/db_views_actor/src/community_follower_view.rs b/crates/db_views_actor/src/community_follower_view.rs index 73082419..d3b11e4d 100644 --- a/crates/db_views_actor/src/community_follower_view.rs +++ b/crates/db_views_actor/src/community_follower_view.rs @@ -9,9 +9,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct CommunityFollowerView { pub community: CommunitySafe, pub follower: PersonSafe, diff --git a/crates/db_views_actor/src/community_moderator_view.rs b/crates/db_views_actor/src/community_moderator_view.rs index 9ea10793..071fc107 100644 --- a/crates/db_views_actor/src/community_moderator_view.rs +++ b/crates/db_views_actor/src/community_moderator_view.rs @@ -9,9 +9,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct CommunityModeratorView { pub community: CommunitySafe, pub moderator: PersonSafe, diff --git a/crates/db_views_actor/src/community_person_ban_view.rs b/crates/db_views_actor/src/community_person_ban_view.rs index 4db96723..b0854921 100644 --- a/crates/db_views_actor/src/community_person_ban_view.rs +++ b/crates/db_views_actor/src/community_person_ban_view.rs @@ -9,9 +9,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct CommunityPersonBanView { pub community: CommunitySafe, pub person: PersonSafe, diff --git a/crates/db_views_actor/src/community_view.rs b/crates/db_views_actor/src/community_view.rs index 8e64a5f9..8ce3b7e6 100644 --- a/crates/db_views_actor/src/community_view.rs +++ b/crates/db_views_actor/src/community_view.rs @@ -20,9 +20,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct CommunityView { pub community: CommunitySafe, pub subscribed: bool, diff --git a/crates/db_views_actor/src/person_block_view.rs b/crates/db_views_actor/src/person_block_view.rs index 5eb18589..d4a52860 100644 --- a/crates/db_views_actor/src/person_block_view.rs +++ b/crates/db_views_actor/src/person_block_view.rs @@ -5,9 +5,9 @@ use lemmy_db_schema::{ source::person::{Person, PersonAlias1, PersonSafe, PersonSafeAlias1}, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct PersonBlockView { pub person: PersonSafe, pub target: PersonSafeAlias1, diff --git a/crates/db_views_actor/src/person_mention_view.rs b/crates/db_views_actor/src/person_mention_view.rs index 0d3cfc83..1de01491 100644 --- a/crates/db_views_actor/src/person_mention_view.rs +++ b/crates/db_views_actor/src/person_mention_view.rs @@ -34,9 +34,9 @@ use lemmy_db_schema::{ PersonId, PersonMentionId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, PartialEq, Serialize, Clone)] +#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] pub struct PersonMentionView { pub person_mention: PersonMention, pub comment: Comment, diff --git a/crates/db_views_actor/src/person_view.rs b/crates/db_views_actor/src/person_view.rs index 861d333f..496ac672 100644 --- a/crates/db_views_actor/src/person_view.rs +++ b/crates/db_views_actor/src/person_view.rs @@ -13,9 +13,9 @@ use lemmy_db_schema::{ source::person::{Person, PersonSafe}, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct PersonViewSafe { pub person: PersonSafe, pub counts: PersonAggregates, diff --git a/crates/db_views_moderator/src/mod_add_community_view.rs b/crates/db_views_moderator/src/mod_add_community_view.rs index df56d8cb..f5fe8af1 100644 --- a/crates/db_views_moderator/src/mod_add_community_view.rs +++ b/crates/db_views_moderator/src/mod_add_community_view.rs @@ -10,9 +10,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModAddCommunityView { pub mod_add_community: ModAddCommunity, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_add_view.rs b/crates/db_views_moderator/src/mod_add_view.rs index d4b5746b..0ac91553 100644 --- a/crates/db_views_moderator/src/mod_add_view.rs +++ b/crates/db_views_moderator/src/mod_add_view.rs @@ -8,9 +8,9 @@ use lemmy_db_schema::{ }, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModAddView { pub mod_add: ModAdd, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_ban_from_community_view.rs b/crates/db_views_moderator/src/mod_ban_from_community_view.rs index 82d336f1..d67f82df 100644 --- a/crates/db_views_moderator/src/mod_ban_from_community_view.rs +++ b/crates/db_views_moderator/src/mod_ban_from_community_view.rs @@ -10,9 +10,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModBanFromCommunityView { pub mod_ban_from_community: ModBanFromCommunity, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_ban_view.rs b/crates/db_views_moderator/src/mod_ban_view.rs index ff962977..79a199cb 100644 --- a/crates/db_views_moderator/src/mod_ban_view.rs +++ b/crates/db_views_moderator/src/mod_ban_view.rs @@ -8,9 +8,9 @@ use lemmy_db_schema::{ }, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModBanView { pub mod_ban: ModBan, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_lock_post_view.rs b/crates/db_views_moderator/src/mod_lock_post_view.rs index 2ce303ec..8774bfbd 100644 --- a/crates/db_views_moderator/src/mod_lock_post_view.rs +++ b/crates/db_views_moderator/src/mod_lock_post_view.rs @@ -11,9 +11,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModLockPostView { pub mod_lock_post: ModLockPost, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_remove_comment_view.rs b/crates/db_views_moderator/src/mod_remove_comment_view.rs index 33b167b8..9cf9862e 100644 --- a/crates/db_views_moderator/src/mod_remove_comment_view.rs +++ b/crates/db_views_moderator/src/mod_remove_comment_view.rs @@ -12,9 +12,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModRemoveCommentView { pub mod_remove_comment: ModRemoveComment, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_remove_community_view.rs b/crates/db_views_moderator/src/mod_remove_community_view.rs index 34fd0982..7196aec6 100644 --- a/crates/db_views_moderator/src/mod_remove_community_view.rs +++ b/crates/db_views_moderator/src/mod_remove_community_view.rs @@ -9,9 +9,9 @@ use lemmy_db_schema::{ }, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModRemoveCommunityView { pub mod_remove_community: ModRemoveCommunity, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_remove_post_view.rs b/crates/db_views_moderator/src/mod_remove_post_view.rs index ac34ff5e..d83f95b4 100644 --- a/crates/db_views_moderator/src/mod_remove_post_view.rs +++ b/crates/db_views_moderator/src/mod_remove_post_view.rs @@ -11,9 +11,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModRemovePostView { pub mod_remove_post: ModRemovePost, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_sticky_post_view.rs b/crates/db_views_moderator/src/mod_sticky_post_view.rs index 411cb57a..f1dfcb14 100644 --- a/crates/db_views_moderator/src/mod_sticky_post_view.rs +++ b/crates/db_views_moderator/src/mod_sticky_post_view.rs @@ -11,9 +11,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModStickyPostView { pub mod_sticky_post: ModStickyPost, pub moderator: PersonSafe, diff --git a/crates/db_views_moderator/src/mod_transfer_community_view.rs b/crates/db_views_moderator/src/mod_transfer_community_view.rs index 94c0abc7..9fcc481b 100644 --- a/crates/db_views_moderator/src/mod_transfer_community_view.rs +++ b/crates/db_views_moderator/src/mod_transfer_community_view.rs @@ -10,9 +10,9 @@ use lemmy_db_schema::{ CommunityId, PersonId, }; -use serde::Serialize; +use serde::{Deserialize, Serialize}; -#[derive(Debug, Serialize, Clone)] +#[derive(Debug, Serialize, Deserialize, Clone)] pub struct ModTransferCommunityView { pub mod_transfer_community: ModTransferCommunity, pub moderator: PersonSafe, -- 2.44.1