blob: c9d5b97bf02a7cc5301c19d4a804326aee211b23 [file] [log] [blame]
Faris Ansarifd345f82017-10-05 11:17:30 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Setup"),
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Hub Settings"
12 },
13 ]
14 },
15 {
16 "label": _("Hub"),
17 "items": [
18 {
19 "type": "page",
20 "name": "hub"
21 },
22 ]
23 },
24 ]