SMART-52 implementation of retrieve user's projects endpoint
This commit is contained in:
parent
c3a50e0552
commit
b313e583dc
Binary file not shown.
@ -6,6 +6,7 @@ from rest_framework.permissions import IsAuthenticated
|
||||
from rest_framework.viewsets import ModelViewSet
|
||||
|
||||
from smartpicasso.app.project.serializers import ProjectSerializer
|
||||
from smartpicasso.app.project.models import Project
|
||||
|
||||
|
||||
class ProjectsView(ModelViewSet):
|
||||
@ -17,3 +18,7 @@ class ProjectsView(ModelViewSet):
|
||||
|
||||
def perform_create(self, serializer):
|
||||
serializer.save(user=self.request.user)
|
||||
|
||||
def get_queryset(self):
|
||||
user = self.request.user
|
||||
return Project.objects.filter(user=user)
|
||||
|
Loading…
Reference in New Issue
Block a user