router.js 321 B

12345678910111213
  1. import Ember from 'ember';
  2. import config from './config/environment';
  3. var Router = Ember.Router.extend({
  4. location: config.locationType
  5. });
  6. Router.map(function() {
  7. this.route("terms_of_service", { path: 'terms-of-service/' });
  8. this.route("privacy_policy", { path: 'privacy-policy/' });
  9. });
  10. export default Router;