Merge pull request #1224 from pixelfed/frontend-ui-refactor

Update BaseApiController
This commit is contained in:
daniel 2019-04-29 20:09:06 -06:00 committed by GitHub
commit afadcb9007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ class BaseApiController extends Controller
$timeago = Carbon::now()->subMonths(6); $timeago = Carbon::now()->subMonths(6);
$notifications = Notification::whereProfileId($pid) $notifications = Notification::whereProfileId($pid)
->whereDate('created_at', '>', $timeago) ->whereDate('created_at', '>', $timeago)
->orderBy('created_at','desc') ->latest()
->paginate(10); ->simplePaginate(10);
$resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer()); $resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer());
$res = $this->fractal->createData($resource)->toArray(); $res = $this->fractal->createData($resource)->toArray();