summaryrefslogtreecommitdiffstats
path: root/webapp/src/config
diff options
context:
space:
mode:
authorUdo Walter2019-04-14 03:16:47 +0200
committerUdo Walter2019-04-14 03:16:47 +0200
commit175065246ec68835111967c4174de526a6356406 (patch)
tree8f89abc22120ca4fc425f78a40b95a6f6e140563 /webapp/src/config
parent[datatable] exportButton -> copyButton (diff)
downloadbas-175065246ec68835111967c4174de526a6356406.tar.gz
bas-175065246ec68835111967c4174de526a6356406.tar.xz
bas-175065246ec68835111967c4174de526a6356406.zip
[ipranges] new webapp module and ip for ipranges
Diffstat (limited to 'webapp/src/config')
-rw-r--r--webapp/src/config/dashboard.js2
-rw-r--r--webapp/src/config/i18n.js6
2 files changed, 6 insertions, 2 deletions
diff --git a/webapp/src/config/dashboard.js b/webapp/src/config/dashboard.js
index e049dc5..95b59fb 100644
--- a/webapp/src/config/dashboard.js
+++ b/webapp/src/config/dashboard.js
@@ -1,4 +1,5 @@
import GroupModule from '@/components/GroupModule'
+import IprangeModule from '@/components/IprangeModule'
import ConfiguratorModule from '@/components/ConfiguratorModule'
import RegistrationModule from '@/components/RegistrationModule'
import BackendModule from '@/components/BackendModule'
@@ -10,6 +11,7 @@ import EventModule from '@/components/EventModule'
export default [
{ path: 'groups', component: GroupModule, icon: 'category' },
+ { path: 'ipranges', component: IprangeModule, icon: 'settings_ethernet' },
{ path: 'configurator', component: ConfiguratorModule, icon: 'list' },
{ path: 'events', component: EventModule, icon: 'event' },
{ path: 'registration', component: RegistrationModule, icon: 'assignment' },
diff --git a/webapp/src/config/i18n.js b/webapp/src/config/i18n.js
index 6b84418..a92541f 100644
--- a/webapp/src/config/i18n.js
+++ b/webapp/src/config/i18n.js
@@ -31,7 +31,8 @@ export default {
'IpxeBuilderModule': 'iPXE Builder',
'UserModule': 'User Management',
'LogModule': 'System Log',
- 'EventModule': 'Event Manager'
+ 'EventModule': 'Event Manager',
+ 'IprangeModule': 'IP Ranges'
}
},
'de': {
@@ -66,7 +67,8 @@ export default {
'IpxeBuilderModule': 'iPXE Builder',
'UserModule': 'Benutzerverwaltung',
'LogModule': 'System Protokoll',
- 'EventModule': 'Event Verwaltung'
+ 'EventModule': 'Event Verwaltung',
+ 'IprangeModule': 'IP Bereiche'
}
}
}