server/bo_client/app/adapters/application.js
author ymh <ymh.work@gmail.com>
Fri, 21 Oct 2016 09:26:28 +0200
changeset 379 0b14f178ca53
parent 304 20071981ba2a
child 517 3143195e91b4
permissions -rw-r--r--
No limitation on the number of item at this level. It has already been checked when preparing the query parameters

import RESTAdapter from 'ember-data/adapters/rest';
import ENV from 'bo-client/config/environment';

export default RESTAdapter.extend({
    namespace: ENV.rootURL.replace(/\/$/,'')+'/api/v1'
    //TODO: pass this as configuration
    //host: 'http://localhost:8000'
});