X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fapi_common%2Fsrc%2Fpost.rs;h=8c05790e92c21f0ba6bc568fe1420af5fbcab1a0;hb=339eab01fd6baee187a041742a4b76827f353946;hp=38aceed9ed9b118d4361dcfcf38a7b48e13470e8;hpb=9a458d2e4bc6efced4d00095cdf7a8852bc53505;p=lemmy.git diff --git a/crates/api_common/src/post.rs b/crates/api_common/src/post.rs index 38aceed9..8c05790e 100644 --- a/crates/api_common/src/post.rs +++ b/crates/api_common/src/post.rs @@ -1,6 +1,6 @@ use crate::sensitive::Sensitive; use lemmy_db_schema::{ - newtypes::{CommunityId, PostId, PostReportId}, + newtypes::{CommunityId, DbUrl, PostId, PostReportId}, ListingType, SortType, }; @@ -166,6 +166,6 @@ pub struct GetSiteMetadataResponse { pub struct SiteMetadata { pub title: Option, pub description: Option, - pub(crate) image: Option, - pub html: Option, + pub(crate) image: Option, + pub embed_video_url: Option, }