mirror of https://github.com/LemmyNet/lemmy.git
Fixing ts-rs serialization.
parent
d9184acb17
commit
9319c762a5
|
@ -28,6 +28,7 @@ pub struct CreatePost {
|
||||||
pub honeypot: Option<String>,
|
pub honeypot: Option<String>,
|
||||||
pub nsfw: Option<bool>,
|
pub nsfw: Option<bool>,
|
||||||
pub language_id: Option<LanguageId>,
|
pub language_id: Option<LanguageId>,
|
||||||
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
||||||
/// Instead of fetching a thumbnail, use a custom one.
|
/// Instead of fetching a thumbnail, use a custom one.
|
||||||
pub custom_thumbnail: Option<Url>,
|
pub custom_thumbnail: Option<Url>,
|
||||||
}
|
}
|
||||||
|
@ -116,6 +117,7 @@ pub struct EditPost {
|
||||||
pub body: Option<String>,
|
pub body: Option<String>,
|
||||||
pub nsfw: Option<bool>,
|
pub nsfw: Option<bool>,
|
||||||
pub language_id: Option<LanguageId>,
|
pub language_id: Option<LanguageId>,
|
||||||
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
||||||
/// Instead of fetching a thumbnail, use a custom one.
|
/// Instead of fetching a thumbnail, use a custom one.
|
||||||
pub custom_thumbnail: Option<Url>,
|
pub custom_thumbnail: Option<Url>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue