mirror of https://github.com/pixelfed/pixelfed.git
Update CollectionController
This commit is contained in:
parent
5ec25204ca
commit
ab2d1315a0
|
@ -175,6 +175,11 @@ class CollectionController extends Controller
|
|||
{
|
||||
$user = $request->user();
|
||||
$collection = CollectionService::getCollection($id);
|
||||
|
||||
if(!$collection) {
|
||||
return response()->json([], 404);
|
||||
}
|
||||
|
||||
if($collection['published_at'] == null || $collection['visibility'] != 'public') {
|
||||
abort_unless($user, 404);
|
||||
if($user->profile_id != $collection['pid']) {
|
||||
|
@ -192,6 +197,11 @@ class CollectionController extends Controller
|
|||
{
|
||||
$user = $request->user();
|
||||
$collection = CollectionService::getCollection($id);
|
||||
|
||||
if(!$collection) {
|
||||
return response()->json([], 404);
|
||||
}
|
||||
|
||||
if($collection['published_at'] == null || $collection['visibility'] != 'public') {
|
||||
abort_unless($user, 404);
|
||||
if($user->profile_id != $collection['pid']) {
|
||||
|
|
Loading…
Reference in New Issue