forked from alemi/upub
chore: comment out so i dont get warns compiling
This commit is contained in:
parent
bcf4b32dba
commit
18f712194c
1 changed files with 34 additions and 34 deletions
|
@ -42,37 +42,37 @@ pub async fn view(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct StatusesQuery {
|
// pub struct StatusesQuery {
|
||||||
/// All results returned will be lesser than this ID. In effect, sets an upper bound on results.
|
// /// All results returned will be lesser than this ID. In effect, sets an upper bound on results.
|
||||||
pub max_id: String,
|
// pub max_id: String,
|
||||||
/// All results returned will be greater than this ID. In effect, sets a lower bound on results.
|
// /// All results returned will be greater than this ID. In effect, sets a lower bound on results.
|
||||||
pub since_id: String,
|
// pub since_id: String,
|
||||||
/// Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.
|
// /// Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.
|
||||||
pub min_id: String,
|
// pub min_id: String,
|
||||||
/// Maximum number of results to return. Defaults to 20 statuses. Max 40 statuses.
|
// /// Maximum number of results to return. Defaults to 20 statuses. Max 40 statuses.
|
||||||
pub limit: i32,
|
// pub limit: i32,
|
||||||
/// Filter out statuses without attachments.
|
// /// Filter out statuses without attachments.
|
||||||
pub only_media: bool,
|
// pub only_media: bool,
|
||||||
/// Filter out statuses in reply to a different account.
|
// /// Filter out statuses in reply to a different account.
|
||||||
pub exclude_replies: bool,
|
// pub exclude_replies: bool,
|
||||||
/// Filter out boosts from the response.
|
// /// Filter out boosts from the response.
|
||||||
pub exclude_reblogs: bool,
|
// pub exclude_reblogs: bool,
|
||||||
/// Filter for pinned statuses only. Defaults to false, which includes all statuses. Pinned statuses do not receive special priority in the order of the returned results.
|
// /// Filter for pinned statuses only. Defaults to false, which includes all statuses. Pinned statuses do not receive special priority in the order of the returned results.
|
||||||
pub pinned: bool,
|
// pub pinned: bool,
|
||||||
/// Filter for statuses using a specific hashtag.
|
// /// Filter for statuses using a specific hashtag.
|
||||||
pub tagged: String,
|
// pub tagged: String,
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
pub async fn statuses(
|
// pub async fn statuses(
|
||||||
State(ctx): State<Context>,
|
// State(ctx): State<Context>,
|
||||||
AuthIdentity(auth): AuthIdentity,
|
// AuthIdentity(auth): AuthIdentity,
|
||||||
Path(id): Path<String>,
|
// Path(id): Path<String>,
|
||||||
Query(_query): Query<StatusesQuery>,
|
// Query(_query): Query<StatusesQuery>,
|
||||||
) -> Result<Json<Vec<Status>>, StatusCode> {
|
// ) -> Result<Json<Vec<Status>>, StatusCode> {
|
||||||
let uid = ctx.uid(id);
|
// let uid = ctx.uid(id);
|
||||||
model::addressing::Entity::find_addressed(auth.my_id())
|
// model::addressing::Entity::find_addressed(auth.my_id())
|
||||||
.filter(model::activity::Column::Actor.eq(uid))
|
// .filter(model::activity::Column::Actor.eq(uid))
|
||||||
.filter(auth.filter_condition());
|
// .filter(auth.filter_condition());
|
||||||
|
//
|
||||||
todo!()
|
// todo!()
|
||||||
}
|
// }
|
||||||
|
|
Loading…
Reference in a new issue