Closed bonotake closed 5 years ago
Current develop branch has type mismatches. routes passes request.data to controllers.create_new() and similar functions, but these functions expects to receive JSON data. So this PR changes the arguments and passes request.json instead.
routes
request.data
controllers.create_new()
request.json
Current develop branch has type mismatches.
routes
passesrequest.data
tocontrollers.create_new()
and similar functions, but these functions expects to receive JSON data. So this PR changes the arguments and passesrequest.json
instead.