Charles-Henri Decultot | bc7a549 | 2018-03-01 06:29:21 +0100 | [diff] [blame] | 1 | from __future__ import unicode_literals |
2 | from frappe import _ | ||||
3 | |||||
4 | def 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 | ] |