blob: 14d917f704920f00c4efe8cef73069560e4b51ac [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",
Charles-Henri Decultot30da37f2018-05-23 16:40:41 +000012 "name": "Stripe Settings",
13 "description": _("Stripe payment gateway settings"),
14 },
15 {
16 "type": "doctype",
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +010017 "name": "GoCardless Settings",
18 "description": _("GoCardless payment gateway settings"),
19 },
20 {
21 "type": "doctype",
22 "name": "GoCardless Mandate",
23 "description": _("GoCardless SEPA Mandate"),
24 }
25 ]
Vinayak Jethedf831482018-04-03 11:17:03 +053026 },
27 {
28 "label": _("Settings"),
29 "items": [
30 {
31 "type": "doctype",
32 "name": "Woocommerce Settings"
Saurabhd60c0f22018-05-16 11:33:47 +053033 },
34 {
35 "type": "doctype",
36 "name": "Shopify Settings",
37 "description": _("Connect Shopify with ERPNext"),
Vinayak Jethedf831482018-04-03 11:17:03 +053038 }
39 ]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +010040 }
41 ]