https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31022
Bug ID: 31022
Summary: 400/404 actually returns 500
Change sponsored?: ---
Product: Koha
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P5 - low
Component: REST API
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Not sure if I am missing something, but I don't manage to get a 400 with the
syntax we are using all around our REST API code.
return $c->render(
status => 400,
openapi => { error => "this is an error" }
);
I am getting a 500 with, in Koha logs:
[{"message":"Missing property.","path":"\/body\/errors"}]
So yes, it is working with:
return $c->render(
status => 400,
openapi => { errors => [ {message => 'this is an error'}] }
);
But it's not at all what we are doing in our REST API module.
--
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/