ember-cli-101/app/router.js
Martin Donnelly 3b4a98545f Page 22
2015-03-19 14:21:30 +00:00

15 lines
264 B
JavaScript

import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.resource('friends', function() {
this.route('new');
});
});
export default Router;