X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/81f4a0e5709e2bf818244a07cbb715a54c96f3eb..e8403a187a6a643530feba0ae1002064a96387e7:/apps/api/urls.py?ds=sidebyside diff --git a/apps/api/urls.py b/apps/api/urls.py index 9bad68a12..60b20647c 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -5,7 +5,6 @@ from piston.resource import Resource from api import handlers from catalogue.models import Book -from picture.models import Picture auth = OAuthAuthentication(realm="Wolne Lektury") @@ -23,7 +22,7 @@ tag_resource = Resource(handler=handlers.TagDetailHandler) fragment_resource = Resource(handler=handlers.FragmentDetailHandler) fragment_list_resource = Resource(handler=handlers.FragmentsHandler) -picture_resource = Resource(handler=handlers.PictureHandler) +picture_resource = Resource(handler=handlers.PictureHandler, authentication=auth) urlpatterns = patterns( 'piston.authentication',