0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-20 23:19:38 +00:00

Fixed shelf activity display & updated book sort operation

This commit is contained in:
Dan Brown 2019-05-05 15:54:22 +01:00
parent 5910e00fb8
commit ba09dad1fe
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9
6 changed files with 15 additions and 16 deletions
app/Http/Controllers

View file

@ -124,6 +124,7 @@ class BookshelfController extends Controller
$this->entityContextManager->setShelfContext($shelf->id);
$this->setPageTitle($shelf->getShortName());
return view('shelves.show', [
'shelf' => $shelf,
'books' => $books,
@ -287,6 +288,7 @@ class BookshelfController extends Controller
// Update the cover image if in request
if ($request->has('image')) {
$newImage = $request->file('image');
$this->imageRepo->destroyImage($shelf->cover);
$image = $this->imageRepo->saveNew($newImage, 'cover_shelf', $shelf->id, 512, 512, true);
$shelf->image_id = $image->id;
$shelf->save();