23 lines
473 B
Python
23 lines
473 B
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"label": _("Documents"),
|
|
"icon": "icon-star",
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Social Login Keys",
|
|
"description": _("Enter keys to enable login via Facebook, Google, GitHub."),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Backup Manager",
|
|
"description": _("Manage cloud backups on Dropbox"),
|
|
"hide_count": True
|
|
}
|
|
]
|
|
}
|
|
]
|