-
- Downloads
[FIX] auth_oauth: fragment_to_query_string return
Use the `fragment_to_query_string` decorator before the `route` decorator on a controller endpoint. Traceback when the endpoint is called as a `str` object is not a `Response` object. Since httpocalypse it is advised that all decorators used with http-type controllers return a Response. This makes it possible to decorate the endpoint in any order, even before `@route`. # Preferred @route(...) @fragment_to_query_string def endpoint(...): ... # This work @fragment_to_query_string @route(...) def endpoint(...): ... Part-of: odoo/odoo#109161
Loading
Please register or sign in to comment