develop #8

Merged
s460930 merged 7 commits from develop into master 2020-12-17 17:03:01 +01:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit b313e583dc - Show all commits

Binary file not shown.

View File

@ -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)