django-orchestra/orchestra/apps/systemusers/api.py

17 lines
467 B
Python
Raw Normal View History

from rest_framework import viewsets
from orchestra.api import router, SetPasswordApiMixin
from orchestra.apps.accounts.api import AccountApiMixin
2014-09-30 16:39:47 +00:00
from .models import SystemUser
from .serializers import SystemUserSerializer
2014-09-30 16:39:47 +00:00
class SystemUserViewSet(AccountApiMixin, SetPasswordApiMixin, viewsets.ModelViewSet):
model = SystemUser
serializer_class = SystemUserSerializer
filter_fields = ('username',)
2014-09-30 16:39:47 +00:00
router.register(r'systemusers', SystemUserViewSet)