SmartPicasso/rest-app/smartpicasso/app/project/views.py

20 lines
457 B
Python
Raw Normal View History

"""
@author p.dolata
"""
from rest_framework.permissions import IsAuthenticated
from rest_framework.viewsets import ModelViewSet
from smartpicasso.app.project.serializers import ProjectSerializer
class ProjectsView(ModelViewSet):
"""
View for project endpoints
"""
permission_classes = (IsAuthenticated,)
serializer_class = ProjectSerializer
def perform_create(self, serializer):
serializer.save(user=self.request.user)