baseui/conf/init.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2017-08-24 13:23:03 +02:00
{
2017-08-29 16:34:24 +02:00
"title": "MyApp",
2017-08-24 15:55:44 +02:00
"api": {
"baseURL": "https://cx20.basehosts.de/api/v1/"
2017-08-24 13:23:03 +02:00
},
"navigation": [
2017-08-24 15:55:44 +02:00
{
"name": "Login",
"to": "/login",
2017-08-29 15:51:50 +02:00
"icon": "fa-home",
2017-08-29 21:38:33 +02:00
"content": "<login-form></login-form>",
"show": {
"never": true
}
2017-08-24 15:55:44 +02:00
},
2017-08-24 13:23:03 +02:00
{
"name": "Dashboard",
"to": "/",
2017-08-29 20:58:39 +02:00
"icon": "icon-compass",
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 20:58:39 +02:00
"icon": "icon-contacts",
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",
"icon": "icon-contacts",
"content": "<domainlist></domainlist>"
},
{
"name": "FormDemo",
"to": "/formdemo",
"icon": "icon-contacts",
"content": "<form-demo></form-demo>"
},
2017-08-25 12:25:19 +02:00
{
"name": "Logout",
"to": "/logout",
2017-08-29 20:58:39 +02:00
"icon": "icon-log-out",
2017-08-29 15:51:50 +02:00
"content": "<logout></logout>"
2017-08-24 13:23:03 +02:00
}
]
}