Domember/app/router.js

14 lines
249 B
JavaScript
Raw Normal View History

import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
2016-11-22 10:02:34 +01:00
this.route('heaters');
});
export default Router;