-
Notifications
You must be signed in to change notification settings - Fork 532
Routing Configuration
Abhay Chawla edited this page Oct 2, 2018
·
3 revisions
- Navigate to the required routing module module-name-routing.module.ts:
- to ensure routing with app shell import
import { Route } from '../core/route/route.service';
import { extract } from '../core/i18n/i18n.service';
- import the required components for routing
import { ComponentName } from './component-path.component'
- Declare the routes:
const routes: Routes = [
Route.withShell([
{
path: 'path-name',
component: ComponentName,
data: { title: extract('Title') },
children: [
{...}
]
}
])
];
For reference, please look at:
clients/clients-routing.module.ts
accounting/accounting-routing.module.ts
self-service/self-service-routing.module.ts
Stable Community App Demo: https://demo.mifos.io/
Latest Community App Development: https://dev.mifos.io/
Latest Community App Staging: https://staging.mifos.io/
Community App Documentation Manual: https://mifosforge.jira.com/wiki/spaces/docs/pages/52035622/User+Manual
API Documentation: https://demo.mifos.io/api-docs/apiLive.htm
Demo Credentials:
Username: mifos
Password: password