|
|
|
@ -205,12 +205,10 @@ class AccountController extends Controller
|
|
|
|
|
|
|
|
|
|
$pid = $user->id;
|
|
|
|
|
Cache::remember("user:filter:list:$pid", 1440, function() use($pid) {
|
|
|
|
|
$private = Profile::whereIsPrivate(true)->where('id', '!=', $pid)->pluck('id');
|
|
|
|
|
$filters = UserFilter::whereUserId($pid)
|
|
|
|
|
return UserFilter::whereUserId($pid)
|
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
|
->whereIn('filter_type', ['mute', 'block'])
|
|
|
|
|
->pluck('filterable_id')->toArray();
|
|
|
|
|
return array_merge($private->toArray(), $filters);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return redirect()->back();
|
|
|
|
@ -259,12 +257,10 @@ class AccountController extends Controller
|
|
|
|
|
|
|
|
|
|
$pid = $user->id;
|
|
|
|
|
Cache::remember("user:filter:list:$pid", 1440, function() use($pid) {
|
|
|
|
|
$private = Profile::whereIsPrivate(true)->where('id', '!=', $pid)->pluck('id');
|
|
|
|
|
$filters = UserFilter::whereUserId($pid)
|
|
|
|
|
return UserFilter::whereUserId($pid)
|
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
|
->whereIn('filter_type', ['mute', 'block'])
|
|
|
|
|
->pluck('filterable_id')->toArray();
|
|
|
|
|
return array_merge($private->toArray(), $filters);
|
|
|
|
|
});
|
|
|
|
|
return redirect()->back();
|
|
|
|
|
}
|
|
|
|
|