You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

router.js 342B

1234567891011121314
  1. import EmberRouter from '@ember/routing/router';
  2. import config from './config/environment';
  3. export default class Router extends EmberRouter {
  4. location = config.locationType;
  5. rootURL = config.rootURL;
  6. }
  7. Router.map(function() {
  8. this.route('rezepte');
  9. this.route('zettel');
  10. this.route('produkte');
  11. this.route('neues-produkt');
  12. });