Created
August 9, 2017 10:19
-
-
Save AndreasDickow/4bde580c210c8bb636eb35463edd84ce to your computer and use it in GitHub Desktop.
Angular2 Image Upload to Django Rest Framework with FormData
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ProfileViewSet(viewsets.ModelViewSet): | |
parsers = [parsers.MultiPartParser, parsers.FormParser] | |
queryset = Profile.objects.all() | |
serializer_class = ProfileSerializer | |
permission_classes = [ | |
user_permissions.IsProfileOwner | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment