adding possibility to update the informations of a book (title, etc.) and handle 'idBook' parameters in Slide urls to send back only the slides of a book (will replace BooksSlides)
from django.conf.urls import patterns, url
from rest_framework.authtoken import views
from authentication.views import User, ObtainAuthToken
urlpatterns = patterns('',
url(r'^user', User.as_view()),
url(r'^api-token-auth', ObtainAuthToken.as_view())
)