mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update CollectionController
This commit is contained in:
parent
e01ece173c
commit
8e033b3228
1 changed files with 6 additions and 2 deletions
|
@ -34,7 +34,7 @@ class CollectionController extends Controller
|
||||||
|
|
||||||
public function show(Request $request, int $collection)
|
public function show(Request $request, int $collection)
|
||||||
{
|
{
|
||||||
$collection = Collection::whereNotNull('published_at')->findOrFail($collection);
|
$collection = Collection::with('profile')->whereNotNull('published_at')->findOrFail($collection);
|
||||||
if($collection->profile->status != null) {
|
if($collection->profile->status != null) {
|
||||||
abort(404);
|
abort(404);
|
||||||
}
|
}
|
||||||
|
@ -100,7 +100,11 @@ class CollectionController extends Controller
|
||||||
$collection->items()->delete();
|
$collection->items()->delete();
|
||||||
$collection->delete();
|
$collection->delete();
|
||||||
|
|
||||||
return 200;
|
if($request->wantsJson()) {
|
||||||
|
return 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
return redirect('/');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function storeId(Request $request)
|
public function storeId(Request $request)
|
||||||
|
|
Loading…
Reference in a new issue