make inner type pub so it can be read and created easily in other crates (#4397)

this is for use in SSR pagination in Lemmy-UI-Leptos
fix_person_details_res^2
jim-taylor-business 4 months ago committed by GitHub
parent 20fd4b5869
commit f43d2eca70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -101,7 +101,7 @@ pub struct PostReportView {
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "full", derive(ts_rs::TS))]
#[cfg_attr(feature = "full", ts(export))]
pub struct PaginationCursor(pub(crate) String);
pub struct PaginationCursor(pub String);
#[skip_serializing_none]
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]

Loading…
Cancel
Save