(self, request: Request, workspace_id: str, knowledge_id: str)
| 68 | , |
| 69 | ) |
| 70 | def post(self, request: Request, workspace_id: str, knowledge_id: str): |
| 71 | return result.success(ProblemSerializers.Create( |
| 72 | data={'workspace_id': workspace_id, 'knowledge_id': knowledge_id} |
| 73 | ).batch(request.data)) |
| 74 | |
| 75 | class Paragraph(APIView): |
| 76 | authentication_classes = [TokenAuth] |