17 lines
371 B
Python
17 lines
371 B
Python
from rest_framework import viewsets
|
|
|
|
from orchestra.api import router
|
|
from orchestra.apps.accounts.api import AccountApiMixin
|
|
|
|
from .models import Contact
|
|
from .serializers import ContactSerializer
|
|
|
|
|
|
class ContactViewSet(AccountApiMixin, viewsets.ModelViewSet):
|
|
model = Contact
|
|
serializer_class = ContactSerializer
|
|
|
|
|
|
router.register(r'contacts', ContactViewSet)
|
|
|