You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since it uses the request->getAlpha() method to get the request parameters, it ends sending an invalid uuid(and also sends incomplete values for the rest of params)
{"code":"invalid_argument_exception","message":"\u003CCodelyTv\\Mooc\\Shared\\Domain\\Courses\\CourseId\u003E does not allow the value \u003Cdcbacabaa\u003E."}
it should be changed to something like
private function createCourse(Request $request): RedirectResponse
{
$this->dispatch(
new CreateCourseCommand(
$request->request->get('id'),
$request->request->get('name'),
$request->request->get('duration')
)
);
The text was updated successfully, but these errors were encountered:
Since it uses the
request->getAlpha()
method to get the request parameters, it ends sending an invalid uuid(and also sends incomplete values for the rest of params)it should be changed to something like
The text was updated successfully, but these errors were encountered: