censis-archive/obrand/obrand-admin/app/router.js

22 lines
455 B
JavaScript
Raw Normal View History

2016-06-06 10:45:51 +00:00
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('index', {path: '/'});
this.route('login');
this.route('auth-error');
this.route('about');
this.route('signup');
this.route('profile');
this.route('company');
this.route('newcompany');
this.route('venue');
this.route('pages');
});
export default Router;