diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-09-30 22:06:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 22:06:29 -0700 |
commit | 739ca4cb813a7deb910f3dcb1655ae9d484e6487 (patch) | |
tree | 2814a7b5542ee14f412196eb14702ffd89966bc8 /modern/src/App.js | |
parent | 94e8c40f52b239562aded5e70e334ddbb2eea23b (diff) | |
parent | 23466068f868b631aca5e1b9c4ecf5c846541fd2 (diff) | |
download | trackermap-web-739ca4cb813a7deb910f3dcb1655ae9d484e6487.tar.gz trackermap-web-739ca4cb813a7deb910f3dcb1655ae9d484e6487.tar.bz2 trackermap-web-739ca4cb813a7deb910f3dcb1655ae9d484e6487.zip |
Merge pull request #784 from traccar/groups
Implement groups management
Diffstat (limited to 'modern/src/App.js')
-rw-r--r-- | modern/src/App.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modern/src/App.js b/modern/src/App.js index 9dc963b6..1f6b55a4 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -11,6 +11,8 @@ import UserPage from './UserPage'; import SocketController from './SocketController'; import NotificationsPage from './settings/NotificationsPage'; import NotificationPage from './settings/NotificationPage'; +import GroupsPage from './settings/GroupsPage'; +import GroupPage from './settings/GroupPage'; import PositionPage from './PositionPage'; const App = () => { @@ -27,6 +29,8 @@ const App = () => { <Route exact path='/reports/route' component={RouteReportPage} /> <Route exact path='/settings/notifications' component={NotificationsPage} /> <Route exact path='/settings/notification/:id?' component={NotificationPage} /> + <Route exact path='/settings/groups' component={GroupsPage} /> + <Route exact path='/settings/group/:id?' component={GroupPage} /> <Route exact path='/admin/server' component={ServerPage} /> <Route exact path='/admin/users' component={UsersPage} /> </Switch> |