mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Removing some TODOS.
This commit is contained in:
parent
b9f483bc27
commit
270ce539bf
@ -72,15 +72,6 @@ pub(crate) async fn is_mod_or_admin(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
// TODO this probably isn't necessary anymore
|
||||
// pub async fn is_admin(pool: &DbPool, person_id: i32) -> Result<(), LemmyError> {
|
||||
// let user = blocking(pool, move |conn| LocalUser::read(conn, person_id)).await??;
|
||||
// if !user.admin {
|
||||
// return Err(ApiError::err("not_an_admin").into());
|
||||
// }
|
||||
// Ok(())
|
||||
// }
|
||||
|
||||
pub fn is_admin(local_user_view: &LocalUserView) -> Result<(), LemmyError> {
|
||||
if !local_user_view.local_user.admin {
|
||||
return Err(ApiError::err("not_an_admin").into());
|
||||
|
@ -68,7 +68,6 @@ pub async fn send_local_notifs(
|
||||
Ok(ids)
|
||||
}
|
||||
|
||||
// TODO should this really use person_ids as recipient ids? or local_user_ids ?
|
||||
fn do_send_local_notifs(
|
||||
conn: &PgConnection,
|
||||
mentions: &[MentionData],
|
||||
@ -85,7 +84,6 @@ fn do_send_local_notifs(
|
||||
.filter(|m| m.is_local() && m.name.ne(&person.name))
|
||||
.collect::<Vec<&MentionData>>()
|
||||
{
|
||||
// TODO do a local user fetch
|
||||
if let Ok(mention_user_view) = LocalUserView::read_from_name(&conn, &mention.name) {
|
||||
// TODO
|
||||
// At some point, make it so you can't tag the parent creator either
|
||||
|
Loading…
Reference in New Issue
Block a user