mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
261 B
Python
9 lines
261 B
Python
|
from rest_framework.viewsets import ModelViewSet
|
||
|
from extras.tests.dummy_plugin.models import DummyModel
|
||
|
from .serializers import DummySerializer
|
||
|
|
||
|
|
||
|
class DummyViewSet(ModelViewSet):
|
||
|
queryset = DummyModel.objects.all()
|
||
|
serializer_class = DummySerializer
|