mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
009a45dffb
- Allows admins to view likes, sorted by downvotes first, for a given comment or post. - Fixes #4088
24 lines
727 B
Rust
24 lines
727 B
Rust
use actix_web::web::{Data, Json, Query};
|
|
use lemmy_api_common::{
|
|
context::LemmyContext,
|
|
post::{ListPostLikes, ListPostLikesResponse},
|
|
utils::is_admin,
|
|
};
|
|
use lemmy_db_views::structs::{LocalUserView, VoteView};
|
|
use lemmy_utils::error::LemmyError;
|
|
|
|
/// Lists likes for a post
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn list_post_likes(
|
|
data: Query<ListPostLikes>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> Result<Json<ListPostLikesResponse>, LemmyError> {
|
|
// Make sure user is an admin
|
|
is_admin(&local_user_view)?;
|
|
|
|
let post_likes =
|
|
VoteView::list_for_post(&mut context.pool(), data.post_id, data.page, data.limit).await?;
|
|
|
|
Ok(Json(ListPostLikesResponse { post_likes }))
|
|
}
|