24 lines
310 B
Python
24 lines
310 B
Python
|
from __future__ import unicode_literals
|
||
|
from frappe import _
|
||
|
|
||
|
def get_data():
|
||
|
return [
|
||
|
{
|
||
|
"label": _("Setup"),
|
||
|
"items": [
|
||
|
{
|
||
|
"type": "doctype",
|
||
|
"name": "Hub Settings"
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"label": _("Hub"),
|
||
|
"items": [
|
||
|
{
|
||
|
"type": "page",
|
||
|
"name": "hub"
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
]
|