blob: 88c47791870812c1d96fa4149fde81a5de60ffdb [file] [log] [blame]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +01001from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Payments"),
8 "icon": "fa fa-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "GoCardless Settings",
13 "description": _("GoCardless payment gateway settings"),
14 },
15 {
16 "type": "doctype",
17 "name": "GoCardless Mandate",
18 "description": _("GoCardless SEPA Mandate"),
19 }
20 ]
Vinayak Jethedf831482018-04-03 11:17:03 +053021 },
22 {
23 "label": _("Settings"),
24 "items": [
25 {
26 "type": "doctype",
27 "name": "Woocommerce Settings"
28 }
29 ]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +010030 }
31 ]