host{String}
An adapter can target other hosts by setting the host
property.
app/adapters/application.js
1 2 3 4 5 | import DS from 'ember-data' ; export default DS.RESTAdapter.extend({ }); |
Requests for the Post
model would now target https://api.example.com/post/
.
Please login to continue.