- removed participant upload

This commit is contained in:
Peter Papp
2021-08-09 09:38:08 +02:00
parent 9a80c044fc
commit 60337934cb
15 changed files with 35 additions and 123 deletions
@@ -1,18 +0,0 @@
<?php
namespace Domain\Browsing\Controllers;
use Domain\Files\Models\File;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Auth;
class BrowseParticipantsUploadsController
{
public function __invoke(): Collection
{
return File::with(['parent'])
->where('user_id', Auth::id())
->whereAuthor('visitor')
->sortable()
->get();
}
}