from api import handlers
from catalogue.models import Book
-
auth = OAuthAuthentication(realm="Wolne Lektury")
book_changes_resource = Resource(handler=handlers.BookChangesHandler)
fragment_resource = Resource(handler=handlers.FragmentDetailHandler)
fragment_list_resource = Resource(handler=handlers.FragmentsHandler)
+picture_resource = Resource(handler=handlers.PictureHandler, authentication=auth)
urlpatterns = patterns(
'piston.authentication',
# tags by category
url(r'^(?P<category>[a-z0-9-]+)/$', tag_list_resource),
+
+ # picture by slug
+ url(r'^pictures/$', picture_resource)
)