1
0
Fork 0

Update AdminReportController, add `profile_id` to group by. Fixes #4685

This commit is contained in:
Daniel Supernault 2023-10-09 13:44:25 -06:00 committed by chris
parent 377ddc7bb0
commit b4a3c28844
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ trait AdminReportController
$q->whereNull('admin_seen') :
$q->whereNotNull('admin_seen');
})
->groupBy(['id', 'object_id', 'object_type'])
->groupBy(['id', 'object_id', 'object_type', 'profile_id'])
->cursorPaginate(6)
->withQueryString()
);