Merge pull request #1157 from dpetzel/tutorial_authentication

Be sure to import UserSerializer
This commit is contained in:
Tom Christie 2013-10-11 00:36:55 -07:00
commit 97fbc5caec

View File

@ -75,6 +75,10 @@ We'll also add a couple of views. We'd like to just use read-only views for the
class UserDetail(generics.RetrieveAPIView):
queryset = User.objects.all()
serializer_class = UserSerializer
Make sure to also import the `UserSerializer` class
from snippets.serializers import UserSerializer
Finally we need to add those views into the API, by referencing them from the URL conf.