How to override adapters update method

Right now when i try to save my model object with new data ember-data will use PUT request. But instead of PUT request I want to use POST without id in the url.

You can override the method type PUT to POST within the ajaxOptions hook for this particular call.

See this post.