Skip to content
Snippets Groups Projects
  1. Aug 29, 2023
  2. Sep 10, 2023
  3. Aug 23, 2023
  4. Aug 20, 2023
  5. Aug 13, 2023
  6. Aug 06, 2023
  7. Jul 30, 2023
  8. Jul 23, 2023
  9. Jul 09, 2023
  10. Jul 02, 2023
  11. Jun 18, 2023
  12. Jun 11, 2023
  13. Jun 04, 2023
  14. May 07, 2023
  15. Apr 26, 2023
  16. Apr 16, 2023
  17. Apr 09, 2023
  18. Apr 02, 2023
  19. Mar 26, 2023
  20. Mar 20, 2023
  21. Mar 19, 2023
  22. Mar 12, 2023
  23. Mar 05, 2023
  24. Feb 13, 2023
  25. Feb 05, 2023
  26. Jan 22, 2023
  27. Jan 16, 2023
    • M.A Heshmatkhah's avatar
      [FIX] auth_oauth: fragment_to_query_string return · 4a879cb4
      M.A Heshmatkhah authored
      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
      4a879cb4
  28. Jan 15, 2023
  29. Jan 08, 2023
  30. Dec 25, 2022
  31. Dec 18, 2022
  32. Dec 11, 2022
  33. Dec 04, 2022
  34. Nov 27, 2022
  35. Nov 20, 2022
  36. Nov 13, 2022
  37. Oct 30, 2022
  38. Oct 23, 2022
  39. Oct 17, 2022
  40. Oct 16, 2022
Loading