baseui/conf/init.json

82 lines
2.1 KiB
JSON
Raw Normal View History

2017-08-24 13:23:03 +02:00
{
2017-09-01 17:11:50 +02:00
"ui": {
"title": "MyApp",
"api": {
2018-11-01 12:10:29 +01:00
"baseURL": "https://www.basispanel.de/api/v1/"
2017-09-01 17:11:50 +02:00
},
"navigation": {
"main": [
{
"name": "Dashboard",
"to": "/",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-compass"
2017-09-01 17:11:50 +02:00
},
{
"name": "Userlist",
"to": "/userlist",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-contacts"
2017-09-01 17:11:50 +02:00
},
{
"name": "Domainlist",
"to": "/domainlist",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-contacts"
2017-09-01 17:11:50 +02:00
},
{
"name": "Settings",
"to": "/settings",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-cog"
2017-09-01 17:11:50 +02:00
}
],
"profile": [
{
"name": "Profile anpassen",
"to": "/profile",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-color-wand"
2017-09-01 17:11:50 +02:00
},
{
"name": "Logout",
"to": "/logout",
2017-10-04 18:34:57 +02:00
"icon": "baseicon-log-out"
2017-09-01 17:11:50 +02:00
}
]
}
2017-08-24 13:23:03 +02:00
},
2017-09-01 17:11:50 +02:00
"routes": [
2017-08-24 15:55:44 +02:00
{
"name": "Login",
"to": "/login",
2017-09-01 17:11:50 +02:00
"content": "<login-form></login-form>"
2017-08-24 15:55:44 +02:00
},
2017-08-24 13:23:03 +02:00
{
"name": "Dashboard",
"to": "/",
2017-08-29 15:51:50 +02:00
"content": "<dashboard></dashboard>"
2017-08-24 13:23:03 +02:00
},
{
"name": "Userlist",
"to": "/userlist",
2017-08-29 15:51:50 +02:00
"content": "<userlist></userlist>"
2017-08-25 12:25:19 +02:00
},
2017-08-31 14:03:52 +02:00
{
"name": "Domainlist",
"to": "/domainlist",
"content": "<domainlist></domainlist>"
},
{
2017-09-04 18:23:46 +02:00
"name": "Settings",
"to": "/settings",
"content": "<settings></settings>"
2017-08-31 14:03:52 +02:00
},
2017-08-25 12:25:19 +02:00
{
"name": "Logout",
"to": "/logout",
2017-08-29 15:51:50 +02:00
"content": "<logout></logout>"
2017-09-01 17:11:50 +02:00
},
{
"name": "Profil",
"to": "/profile",
2017-09-01 18:25:46 +02:00
"content": "<h2>Profil anpassen</h2>"
2017-08-24 13:23:03 +02:00
}
]
}