tethys/app/Http/Controllers/Publish/PublishController.php
Arno Kaimbacher 795313d3dd - add archive disk to config\filesystems.php
- correct getPath method with public path in app\models\File.php
- composer updates
2020-06-10 21:09:32 +02:00

36 lines
875 B
PHP

<?php
namespace App\Http\Controllers\Publish;
use App\Http\Controllers\Controller;
use App\Models\Dataset;
use Illuminate\Support\Facades\Auth;
use Illuminate\View\View;
class PublishController extends Controller
{
public function __construct()
{
//$this->middleware('auth');
}
/**
* Display a listing of released and accepted datasets.
*
* @return \Illuminate\Http\Response
*/
public function index(): View
{
$user = Auth::user();
$userId = $user->id;
$builder = Dataset::query();
//"select * from [documents] where [server_state] in (?) or ([server_state] = ? and [editor_id] = ?)"
$datasets = $builder
->where('server_state', 'reviewed')
->get();
return view('workflow.publish.index', [
'datasets' => $datasets,
]);
}
}