blob: 22a01a6ada652a51934347552ae7ba8fc67c0ac5 [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 ]
21 }
22 ]