mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
Merge pull request #4393 from pixelfed/staging
Update AdminReportController
This commit is contained in:
commit
c8a34a4dbd
1 changed files with 3 additions and 1 deletions
|
@ -1103,7 +1103,6 @@ trait AdminReportController
|
||||||
Cache::forget('admin-dash:reports:spam-count');
|
Cache::forget('admin-dash:reports:spam-count');
|
||||||
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $report->user->profile_id);
|
Cache::forget('pf:bouncer_v0:exemption_by_pid:' . $report->user->profile_id);
|
||||||
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $report->user->profile_id);
|
Cache::forget('pf:bouncer_v0:recent_by_pid:' . $report->user->profile_id);
|
||||||
PublicTimelineService::warmCache(true, 400);
|
|
||||||
return [$action, $report];
|
return [$action, $report];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1115,6 +1114,7 @@ trait AdminReportController
|
||||||
$appeal->is_spam = true;
|
$appeal->is_spam = true;
|
||||||
$appeal->appeal_handled_at = now();
|
$appeal->appeal_handled_at = now();
|
||||||
$appeal->save();
|
$appeal->save();
|
||||||
|
PublicTimelineService::del($appeal->item_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($action == 'mark-not-spam') {
|
if($action == 'mark-not-spam') {
|
||||||
|
@ -1137,6 +1137,8 @@ trait AdminReportController
|
||||||
});
|
});
|
||||||
|
|
||||||
StatusService::del($status->id);
|
StatusService::del($status->id);
|
||||||
|
StatusService::get($status->id);
|
||||||
|
PublicTimelineService::add($status->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($action == 'mark-all-read') {
|
if($action == 'mark-all-read') {
|
||||||
|
|
Loading…
Reference in a new issue