mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 19:41:03 +00:00
Add Blog::outbox07()
This commit is contained in:
parent
68a01d5f9b
commit
803680186b
1 changed files with 4 additions and 0 deletions
|
@ -311,6 +311,10 @@ impl Blog {
|
|||
)))?;
|
||||
Ok(coll)
|
||||
}
|
||||
|
||||
pub fn outbox07(&self, conn: &Connection) -> Result<ActivityStream<OrderedCollection07>> {
|
||||
self.outbox_collection07(conn).map(ActivityStream::new)
|
||||
}
|
||||
pub fn outbox_collection07(&self, conn: &Connection) -> Result<OrderedCollection07> {
|
||||
let acts = self.get_activities(conn);
|
||||
let acts = acts
|
||||
|
|
Loading…
Reference in a new issue