linstrom/frontend-reactive/app/router.ts

15 lines
353 B
TypeScript
Raw Permalink Normal View History

2024-09-23 07:18:35 +00:00
import EmberRouter from '@ember/routing/router';
import config from 'frontend-reactive/config/environment';
2024-08-22 17:57:53 +00:00
export default class Router extends EmberRouter {
2024-09-23 07:18:35 +00:00
location = config.locationType;
rootURL = config.rootURL;
2024-08-22 17:57:53 +00:00
}
Router.map(function () {
2024-09-23 07:18:35 +00:00
this.route('about');
this.route('registerform');
2024-10-28 15:33:17 +00:00
this.route('auth');
this.route('testing');
2024-08-22 17:57:53 +00:00
});