Skip to content

Commit

Permalink
feat(admin): adding admin module to manage notifications
Browse files Browse the repository at this point in the history
admin module showcase role based security and push notifications management
  • Loading branch information
xmlking committed Dec 8, 2018
1 parent 56cdcf8 commit db85e50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/webapp/src/app/app.module.ts
Expand Up @@ -28,6 +28,7 @@ export class MyHammerConfig extends HammerGestureConfig {
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', loadChildren: '@ngx-starter-kit/home#HomeModule', data: { preload: true } },
{ path: 'dashboard', loadChildren: '@ngx-starter-kit/dashboard#DashboardModule', data: { preload: true } },
{ path: 'admin', loadChildren: '@ngx-starter-kit/admin#AdminModule', data: { preload: false } },
{
path: '404',
loadChildren: '@ngx-starter-kit/not-found#NotFoundModule',
Expand Down
4 changes: 3 additions & 1 deletion apps/webapp/tsconfig.app.json
Expand Up @@ -17,6 +17,8 @@

"../../libs/grid/src/index.ts",

"../../libs/not-found/src/index.ts"
"../../libs/not-found/src/index.ts",

"../../libs/admin/src/index.ts"
]
}

0 comments on commit db85e50

Please sign in to comment.