Merge pull request #1518 from pixelfed/frontend-ui-refactor

Update CollectionController
pull/1525/head
daniel 6 years ago committed by GitHub
commit 4230a5a6d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -79,6 +79,9 @@ class CollectionController extends Controller
]);
$profile = Auth::user()->profile;
$collection = Collection::whereProfileId($profile->id)->findOrFail($id);
if($collection->items()->count() == 0) {
abort(404);
}
$collection->title = e($request->input('title'));
$collection->description = e($request->input('description'));
$collection->visibility = e($request->input('visibility'));

Loading…
Cancel
Save