Add topic creation for organisation users

This commit is contained in:
Ben Goldsworthy 2021-03-21 16:35:04 +00:00
parent 15e1a2a32e
commit 215f46658e
7 changed files with 116 additions and 7 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 { TopicsEditComponent } from './topics-edit.component';
import { SendPushNotificationComponent } from './send-push-notification.component';
// Using child path to allow for FullLayout theming
@ -56,6 +57,16 @@ const routes: Routes = [
component: SendPushNotificationComponent,
data: { title: 'Send Message' },
},
{
path: 'edit-topics',
component: TopicsEditComponent,
data: { title: 'Edit Topics' },
},
{
path: 'edit-subscriptions',
component: SubscriptionsEditComponent,
data: { title: 'Edit Subscriptions' },
},
{
path: 'leaderboard',
component: LeaderboardComponent,