blob: 4c60bf93fc87b67f6023fdc94396c4147b5a3d6c [file] [log] [blame]
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function () {
this.route('active');
this.route('completed');
});
export default Router;