Add organisation push notification page
This commit is contained in:
parent
02f1d95b52
commit
7ef690a6a8
5 changed files with 132 additions and 1 deletions
|
@ -19,6 +19,7 @@ import { MapComponent } from './map.component';
|
|||
import { TrailMapComponent } from './trail-map.component';
|
||||
import { MoreStuffComponent } from './more-graphs-and-tables.component';
|
||||
import { SuppliersComponent } from './suppliers.component';
|
||||
import { SendPushNotificationComponent } from './send-push-notification.component';
|
||||
|
||||
// Using child path to allow for FullLayout theming
|
||||
const routes: Routes = [
|
||||
|
@ -50,6 +51,11 @@ const routes: Routes = [
|
|||
component: AddDataComponent,
|
||||
data: { title: 'Record Transaction' },
|
||||
},
|
||||
{
|
||||
path: 'notify',
|
||||
component: SendPushNotificationComponent,
|
||||
data: { title: 'Send Message' },
|
||||
},
|
||||
{
|
||||
path: 'leaderboard',
|
||||
component: LeaderboardComponent,
|
||||
|
|
Reference in a new issue