1
0
Fork 0

Update AdminReportController, flush thumbnail cache after setting item as NSFW

This commit is contained in:
Daniel Supernault 2018-12-04 20:11:50 -07:00
parent cfdb81c2bd
commit e926fbba35
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
namespace App\Http\Controllers\Admin;
use Cache;
use App\Report;
use Carbon\Carbon;
use Illuminate\Http\Request;
@ -47,6 +48,7 @@ trait AdminReportController
break;
case 'cw':
Cache::forget('status:thumb:'.$item->id);
$item->is_nsfw = true;
$item->save();
$report->nsfw = true;