We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74c4e0 commit 1fa74e7Copy full SHA for 1fa74e7
rest_framework_json_api/views.py
@@ -0,0 +1,19 @@
1
+from rest_framework import generics
2
+from rest_framework.response import Response
3
+
4
5
+class RelationshipView(generics.GenericAPIView):
6
+ def get(self, request, *args, **kwargs):
7
+ return Response()
8
9
+ def put(self, request, *args, **kwargs):
10
11
12
+ def patch(self, request, *args, **kwargs):
13
14
15
+ def post(self, request, *args, **kwargs):
16
17
18
+ def delete(self, request, *args, **kwargs):
19
0 commit comments