System Information
Strapi Version │ 4.25.9 (node v20.9.0)
Hello,
I would like to make sure the admin console makes http requests with URL encoded paths. for example, instead of making a request with a path as:
“api/users?filters[username][$eq]=John”
it would make the request to
“api/users?filters%5Busername%5D%5B$eq%5D=John”
One way I thought this would be possible would be to add interceptors to the axios instance being used. Can anyone guide me on how this could be achieved?
Any other way to encode the URIs in the Strapi Admin requests?