ccdb-web/app/router.js
2017-09-13 14:07:41 -07:00

17 lines
339 B
JavaScript

import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
this.route('login');
this.route('logout');
this.route('collections', function() {
this.route('1');
});
});
export default Router;