Fixes after merge with ft/3584 branch

This commit is contained in:
Owen Conti
2017-09-15 22:31:02 -06:00
parent f4efae0145
commit 6f98fa9f3b
3 changed files with 8 additions and 9 deletions

View File

@@ -28,10 +28,10 @@ export function setRequestContentType ({ value, pathMethod }) {
}
}
export function setResponseContentType ({ value, pathMethod }) {
export function setResponseContentType ({ value, path, method }) {
return {
type: UPDATE_RESPONSE_CONTENT_TYPE,
payload: { value, pathMethod }
payload: { value, path, method }
}
}