Add organisation push notification page

This commit is contained in:
Ben Goldsworthy 2020-11-01 18:05:20 +00:00
parent 02f1d95b52
commit 7ef690a6a8
5 changed files with 132 additions and 1 deletions

View file

@ -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,