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
Basically path segments, query parameters and form data are handled by warp and therefore already decoded when they are accessed by scotty actions. When using warp, path segements are ultimately handled by Network.HTTP.Types.decodePathSegmentsand parameters are handled by Network.HTTP.Types.parseQuery. Both of those call Network.HTTP.Types.urlDecode internally. I added some tests for that.
And like the other PR, I added a formData action that can decode records with FormData instances from http-api-data.
related : #8
closes #170
The text was updated successfully, but these errors were encountered: