mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-16 23:15:14 +00:00
Add Blog::outbox_page07()
This commit is contained in:
parent
cd6c57b9c5
commit
0524b0b153
1 changed files with 8 additions and 0 deletions
|
@ -342,6 +342,14 @@ impl Blog {
|
||||||
coll.collection_props.items = serde_json::to_value(acts)?;
|
coll.collection_props.items = serde_json::to_value(acts)?;
|
||||||
Ok(coll)
|
Ok(coll)
|
||||||
}
|
}
|
||||||
|
pub fn outbox_page07(
|
||||||
|
&self,
|
||||||
|
conn: &Connection,
|
||||||
|
(min, max): (i32, i32),
|
||||||
|
) -> Result<ActivityStream<OrderedCollectionPage07>> {
|
||||||
|
self.outbox_collection_page07(conn, (min, max))
|
||||||
|
.map(ActivityStream::new)
|
||||||
|
}
|
||||||
pub fn outbox_collection_page07(
|
pub fn outbox_collection_page07(
|
||||||
&self,
|
&self,
|
||||||
conn: &Connection,
|
conn: &Connection,
|
||||||
|
|
Loading…
Reference in a new issue