chore: comments, clearer code
This commit is contained in:
parent
1171d4cd06
commit
dfec715594
1 changed files with 1 additions and 2 deletions
|
@ -33,7 +33,7 @@ pub async fn page(
|
||||||
let offset = page.offset.unwrap_or(0);
|
let offset = page.offset.unwrap_or(0);
|
||||||
|
|
||||||
let context = if id.starts_with('+') {
|
let context = if id.starts_with('+') {
|
||||||
format!("https://{}", id.replacen('+', "", 1).replace('@', "/"))
|
id.replacen('+', "https://", 1).replace('@', "/")
|
||||||
} else if id.starts_with("tag:") {
|
} else if id.starts_with("tag:") {
|
||||||
id.clone()
|
id.clone()
|
||||||
} else {
|
} else {
|
||||||
|
@ -43,7 +43,6 @@ pub async fn page(
|
||||||
let items = model::addressing::Entity::find_objects()
|
let items = model::addressing::Entity::find_objects()
|
||||||
.filter(auth.filter_condition())
|
.filter(auth.filter_condition())
|
||||||
.filter(model::object::Column::Context.eq(context))
|
.filter(model::object::Column::Context.eq(context))
|
||||||
// TODO also limit to only local activities
|
|
||||||
.order_by(model::addressing::Column::Published, Order::Desc)
|
.order_by(model::addressing::Column::Published, Order::Desc)
|
||||||
.limit(limit)
|
.limit(limit)
|
||||||
.offset(offset)
|
.offset(offset)
|
||||||
|
|
Loading…
Reference in a new issue