summaryrefslogtreecommitdiffstats
path: root/chat_api/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'chat_api/views.py')
-rw-r--r--chat_api/views.py29
1 files changed, 27 insertions, 2 deletions
diff --git a/chat_api/views.py b/chat_api/views.py
index 91ea44a..f94f3a0 100644
--- a/chat_api/views.py
+++ b/chat_api/views.py
@@ -1,3 +1,28 @@
1from django.shortcuts import render 1from django.db.models.query import QuerySet
2from django.http.response import Http404
3from rest_framework.response import Response
4from rest_framework.serializers import Serializer
5from rest_framework.views import APIView
6from rest_framework import permissions
7from rest_framework import generics
8from knox.auth import TokenAuthentication
2 9
3# Create your views here. 10from django.db.models.query import Q
11
12from .models import *
13from .serializers import *
14
15class GroupView(generics.ListCreateAPIView):
16 permission_classes = (permissions.IsAuthenticated, )
17 authentication_classes = (TokenAuthentication, )
18 serializer_class = GroupSerializer
19
20 def get_queryset(self):
21 return Group.objects.filter(
22 Q(owner=self.request.user) |
23 Q(users__in=(self.request.user, ))
24 ).distinct()
25
26 def create(self, request, *args, **kwargs):
27 request.data['owner'] = request.user.pk
28 return super().create(request, *args, **kwargs) \ No newline at end of file