mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 02:51:54 +08:00
Enhanced how activities are shown on items in recycle bin
This commit is contained in:
parent
ec3aeb3315
commit
df10b508d8
|
@ -3,6 +3,7 @@
|
|||
use BookStack\Auth\Permissions\PermissionService;
|
||||
use BookStack\Auth\User;
|
||||
use BookStack\Entities\Entity;
|
||||
use Illuminate\Database\Eloquent\Relations\Relation;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
|
@ -104,7 +105,9 @@ class ActivityService
|
|||
$activity = $this->permissionService
|
||||
->filterRestrictedEntityRelations($query, 'activities', 'entity_id', 'entity_type')
|
||||
->orderBy('created_at', 'desc')
|
||||
->with(['entity', 'user.avatar'])
|
||||
->with(['entity' => function (Relation $query) {
|
||||
$query->withTrashed();
|
||||
}, 'user.avatar'])
|
||||
->skip($count * ($page - 1))
|
||||
->take($count)
|
||||
->get();
|
||||
|
|
|
@ -16,10 +16,14 @@
|
|||
|
||||
{{ $activity->getText() }}
|
||||
|
||||
@if($activity->entity)
|
||||
@if($activity->entity && is_null($activity->entity->deleted_at))
|
||||
<a href="{{ $activity->entity->getUrl() }}">{{ $activity->entity->name }}</a>
|
||||
@endif
|
||||
|
||||
@if($activity->entity && !is_null($activity->entity->deleted_at))
|
||||
"{{ $activity->entity->name }}"
|
||||
@endif
|
||||
|
||||
@if($activity->extra) "{{ $activity->extra }}" @endif
|
||||
|
||||
<br>
|
||||
|
|
Loading…
Reference in New Issue
Block a user