mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-14 00:14:03 +00:00
Removing some TODOS.
This commit is contained in:
parent
b9f483bc27
commit
270ce539bf
2 changed files with 0 additions and 11 deletions
|
@ -72,15 +72,6 @@ pub(crate) async fn is_mod_or_admin(
|
||||||
Ok(())
|
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> {
|
pub fn is_admin(local_user_view: &LocalUserView) -> Result<(), LemmyError> {
|
||||||
if !local_user_view.local_user.admin {
|
if !local_user_view.local_user.admin {
|
||||||
return Err(ApiError::err("not_an_admin").into());
|
return Err(ApiError::err("not_an_admin").into());
|
||||||
|
|
|
@ -68,7 +68,6 @@ pub async fn send_local_notifs(
|
||||||
Ok(ids)
|
Ok(ids)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO should this really use person_ids as recipient ids? or local_user_ids ?
|
|
||||||
fn do_send_local_notifs(
|
fn do_send_local_notifs(
|
||||||
conn: &PgConnection,
|
conn: &PgConnection,
|
||||||
mentions: &[MentionData],
|
mentions: &[MentionData],
|
||||||
|
@ -85,7 +84,6 @@ fn do_send_local_notifs(
|
||||||
.filter(|m| m.is_local() && m.name.ne(&person.name))
|
.filter(|m| m.is_local() && m.name.ne(&person.name))
|
||||||
.collect::<Vec<&MentionData>>()
|
.collect::<Vec<&MentionData>>()
|
||||||
{
|
{
|
||||||
// TODO do a local user fetch
|
|
||||||
if let Ok(mention_user_view) = LocalUserView::read_from_name(&conn, &mention.name) {
|
if let Ok(mention_user_view) = LocalUserView::read_from_name(&conn, &mention.name) {
|
||||||
// TODO
|
// TODO
|
||||||
// At some point, make it so you can't tag the parent creator either
|
// At some point, make it so you can't tag the parent creator either
|
||||||
|
|
Loading…
Reference in a new issue