mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
parent
2891856b48
commit
7c1a37d584
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,7 @@ use chrono::NaiveDateTime;
|
|||
use lemmy_api_common::{
|
||||
context::LemmyContext,
|
||||
request::fetch_site_data,
|
||||
utils::local_site_opt_to_slur_regex,
|
||||
utils::{is_mod_or_admin, local_site_opt_to_slur_regex},
|
||||
};
|
||||
use lemmy_db_schema::{
|
||||
self,
|
||||
|
@ -173,6 +173,9 @@ impl ApubObject for ApubPost {
|
|||
.dereference(context, local_instance(context).await, request_counter)
|
||||
.await?;
|
||||
let community = page.community(context, request_counter).await?;
|
||||
if community.posting_restricted_to_mods {
|
||||
is_mod_or_admin(context.pool(), creator.id, community.id).await?;
|
||||
}
|
||||
let mut name = page
|
||||
.name
|
||||
.clone()
|
||||
|
|
Loading…
Reference in a new issue