-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add rest viewsets for file item and network models
- Loading branch information
Showing
4 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from rest_framework.viewsets import ModelViewSet | ||
|
||
from uvdat.core.models import FileItem | ||
from uvdat.core.rest.serializers import FileItemSerializer | ||
|
||
|
||
class FileItemViewSet(ModelViewSet): | ||
queryset = FileItem.objects.all() | ||
serializer_class = FileItemSerializer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from rest_framework.viewsets import ModelViewSet | ||
|
||
from uvdat.core.models import Network, NetworkEdge, NetworkNode | ||
from uvdat.core.rest.serializers import ( | ||
NetworkEdgeSerializer, | ||
NetworkNodeSerializer, | ||
NetworkSerializer, | ||
) | ||
|
||
|
||
class NetworkViewSet(ModelViewSet): | ||
queryset = Network.objects.all() | ||
serializer_class = NetworkSerializer | ||
|
||
|
||
class NetworkNodeViewSet(ModelViewSet): | ||
queryset = NetworkNode.objects.all() | ||
serializer_class = NetworkNodeSerializer | ||
|
||
|
||
class NetworkEdgeViewSet(ModelViewSet): | ||
queryset = NetworkEdge.objects.all() | ||
serializer_class = NetworkEdgeSerializer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters