From e8403a187a6a643530feba0ae1002064a96387e7 Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Tue, 20 Dec 2011 15:28:52 +0100 Subject: [PATCH] add auth to picture handler --- apps/api/urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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', -- 2.20.1