forked from alemi/upub
fix: followers, following
This commit is contained in:
parent
80c38dc211
commit
e26346cf66
1 changed files with 2 additions and 2 deletions
|
@ -61,10 +61,10 @@ pub async fn followers(
|
||||||
});
|
});
|
||||||
Ok(JsonLD(
|
Ok(JsonLD(
|
||||||
serde_json::Value::new_object()
|
serde_json::Value::new_object()
|
||||||
.set_id(Some(&format!("{}/users/{}/following", ctx.base(), id)))
|
.set_id(Some(&format!("{}/users/{}/followers", ctx.base(), id)))
|
||||||
.set_collection_type(Some(CollectionType::OrderedCollection))
|
.set_collection_type(Some(CollectionType::OrderedCollection))
|
||||||
.set_total_items(Some(count))
|
.set_total_items(Some(count))
|
||||||
.set_first(Node::link(format!("{}/users/{}/following?page=true", ctx.base(), id)))
|
.set_first(Node::link(format!("{}/users/{}/followers?page=true", ctx.base(), id)))
|
||||||
.ld_context()
|
.ld_context()
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue