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');
|
2024-10-24 14:15:08 +00:00
|
|
|
this.route('registerform');
|
2024-08-22 17:57:53 +00:00
|
|
|
});
|