kosmos/akkounts-web
kosmos
/
akkounts-web
Archived
8
1
Fork 0
This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
akkounts-web/app/router.js

18 lines
402 B
JavaScript

import EmberRouter from '@ember/routing/router';
import config from './config/environment';
import RouterScroll from 'ember-router-scroll';
const Router = EmberRouter.extend(RouterScroll, {
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
this.route('mastodon', function() {
this.route('index');
this.route('signup');
});
});
export default Router;