Skip to content

Instantly share code, notes, and snippets.

@thefonso
Forked from bojicas/router.js
Last active August 29, 2015 14:10
Show Gist options
  • Save thefonso/5c5c9efbfba38ab867c4 to your computer and use it in GitHub Desktop.
Save thefonso/5c5c9efbfba38ab867c4 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
var Router = Ember.Router.extend({
location: TodoEmberENV.locationType
});
Router.map(function() {
this.resource('todos', { path: '/' });
});
export default Router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment