X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/e08b9a9ce539493a925abad05a1a2900aa80583e..0cd571520ee3f3a1dfaed2f5340961e39a941ad1:/apps/wiki/views.py diff --git a/apps/wiki/views.py b/apps/wiki/views.py index fcbdf8bf..f8ba46ec 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -220,9 +220,9 @@ def gallery(request, directory): images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)] images.sort() - book = Book.objects.get(gallery=directory) + books = Book.objects.filter(gallery=directory) - if not book.public and not request.user.is_authenticated(): + if not all(book.public for book in books) and not request.user.is_authenticated(): return HttpResponseForbidden("Not authorized.") return JSONResponse(images)