2016-08-09 09:27:37 +00:00
|
|
|
# ~*~ coding: utf-8 ~*~
|
2016-08-23 16:11:13 +00:00
|
|
|
#
|
2016-08-09 09:27:37 +00:00
|
|
|
|
2016-08-24 11:42:16 +00:00
|
|
|
from rest_framework import generics, mixins, status, permissions
|
|
|
|
from rest_framework.views import APIView
|
|
|
|
from rest_framework.response import Response
|
2016-08-23 16:11:13 +00:00
|
|
|
|
2016-08-24 11:42:16 +00:00
|
|
|
from .serializers import UserSerializer, UserGroupSerializer
|
2016-08-24 09:14:21 +00:00
|
|
|
from .models import User, UserGroup
|
2016-08-23 16:11:13 +00:00
|
|
|
|
|
|
|
|
2016-08-24 11:42:16 +00:00
|
|
|
class UserListAddApi(generics.ListCreateAPIView):
|
2016-08-24 09:14:21 +00:00
|
|
|
queryset = User.objects.all()
|
|
|
|
serializer_class = UserSerializer
|
|
|
|
|
|
|
|
|
2016-08-24 11:42:16 +00:00
|
|
|
class UserDetailDeleteUpdateApi(generics.RetrieveUpdateDestroyAPIView):
|
2016-08-23 16:11:13 +00:00
|
|
|
queryset = User.objects.all()
|
|
|
|
serializer_class = UserSerializer
|
2016-08-24 11:42:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserGroupListAddApi(generics.ListCreateAPIView):
|
|
|
|
queryset = UserGroup.objects.all()
|
|
|
|
serializer_class = UserGroupSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class UserGroupDetailDeleteUpdateApi(generics.RetrieveUpdateDestroyAPIView):
|
|
|
|
queryset = UserGroup.objects.all()
|
|
|
|
serializer_class = UserGroupSerializer
|
|
|
|
|