Browse Source

add DailyReportViews Post api

DYaiu 4 năm trước cách đây
mục cha
commit
3ac0e5184c
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      workreport/views.py

+ 6 - 0
workreport/views.py

@@ -12,3 +12,9 @@ class DailyReportViews(APIView):
     def get(self, request):
         data = DailyReport.objects.values('title', 'content', 'create_at', 'create_by', 'id')
         return Response(data=data, status=status.HTTP_200_OK)
+
+    def post(self, request):
+        data = request.data
+        report = DailyReport(title=data['title'], content=data['content'], create_by_id=data['create_by_id'])
+        report.save()
+        return Response(status=status.HTTP_201_CREATED)