* [fix] remove razorpay from integration service * [fix] clean-up js side integration service dependancies * [fix] remove integration service, .py cleanup, move integration request to integration * [fix] move oauth to integrations and deprecate integration broker * [fix] mark services enabled and update integrations listing * [fix] V7.1 and V7.2 integration service related pathch fixes and move payment gateway dotype to core module * [fix] create payment gateway records if not exists * [fix] module page for integrations * [minor][fix] minor checks * [fix] remove integration broker module only if not allocated to any doctype
57 lines
1.1 KiB
Python
57 lines
1.1 KiB
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"label": _("Payments"),
|
|
"icon": "fa fa-star",
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "PayPal Settings",
|
|
"description": _("PayPal payment gateway settings"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Razorpay Settings",
|
|
"description": _("Razorpay Payment gateway settings"),
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"label": _("Backup"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Dropbox Settings",
|
|
"description": _("Dropbox backup settings"),
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"label": _("Authentication"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Social Login Keys",
|
|
"description": _("Enter keys to enable login via Facebook, Google, GitHub."),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "LDAP Settings",
|
|
"description": _("Ldap settings"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "OAuth Client",
|
|
"description": _("Register OAuth Client App"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "OAuth Provider Settings",
|
|
"description": _("Settings for OAuth Provider"),
|
|
},
|
|
]
|
|
}
|
|
]
|