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
And this works, but now the API serves out Content-Type: application/merge-patch+json – but it should still be application/json, the request was partial but the response is full.
I expect I need to adjust the formatter to do this... but given ours is ActiveModelSerializers it's pretty abstract and I am not sure where JSON comes into it.
Is there really the need for all of this boilerplate to do this?
The text was updated successfully, but these errors were encountered:
Just to rephrase the problem, given an incoming content type you want a different outgoing content type. Generally that seems pretty simple, you declare a formatter for the outgoing content type then set the content type inside that if. Is that not working? Care to try and produce a spec that shows what you're trying to accomplish and we can simplify it and possibly add some code to avoid the boilerplate?
I am attempting to upgrade to v1 and have been banging my head against problems caused by #1589
We do some JSON Merge Patch – prior to #1589 that was as simple as:
Now I have to do some of this to dodge
406
'sAnd this works, but now the API serves out
Content-Type: application/merge-patch+json
– but it should still beapplication/json
, the request was partial but the response is full.I expect I need to adjust the formatter to do this... but given ours is ActiveModelSerializers it's pretty abstract and I am not sure where JSON comes into it.
Is there really the need for all of this boilerplate to do this?
The text was updated successfully, but these errors were encountered: