Merge pull request #4393 from pixelfed/staging

Update AdminReportController
pull/4394/head
daniel 2023-05-18 22:34:49 -06:00 zatwierdzone przez GitHub
commit c8a34a4dbd
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -1103,7 +1103,6 @@ trait AdminReportController
Cache::forget('admin-dash:reports:spam-count');
Cache::forget('pf:bouncer_v0:exemption_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];
}
@ -1115,6 +1114,7 @@ trait AdminReportController
$appeal->is_spam = true;
$appeal->appeal_handled_at = now();
$appeal->save();
PublicTimelineService::del($appeal->item_id);
}
if($action == 'mark-not-spam') {
@ -1137,6 +1137,8 @@ trait AdminReportController
});
StatusService::del($status->id);
StatusService::get($status->id);
PublicTimelineService::add($status->id);
}
if($action == 'mark-all-read') {