brotherton-erpnext/erpnext/patches/v11_1/setup_guardian_role.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
301 B
Python
Raw Normal View History

from __future__ import unicode_literals
import frappe
def execute():
if 'Education' in frappe.get_active_domains() and not frappe.db.exists("Role", "Guardian"):
2019-01-30 12:15:48 +00:00
doc = frappe.new_doc("Role")
doc.update({
"role_name": "Guardian",
"desk_access": 0
2019-01-30 12:15:48 +00:00
})
doc.insert(ignore_permissions=True)