예제 #1
0
파일: app.py 프로젝트: JNazare/api-askii
 def post(self, courseId):
     args = self.reqparse.parse_args()
     return helpers.postItem(handle, "questions", models.question_fields, args, courseId), 201
예제 #2
0
파일: app.py 프로젝트: JNazare/api-askii
 def post(self):
     args = self.reqparse.parse_args()
     return helpers.postItem(handle, "users", models.user_fields, args), 201