brotherton-erpnext/erpnext/patches/july_2012/blog_guest_permission.py
2012-07-27 14:39:27 +05:30

12 lines
299 B
Python

def execute():
"""allocate read write permission to guest for doctype 'Blog'"""
import webnotes
webnotes.conn.sql("""delete from `tabDocPerm` where parent = 'Blog'""")
webnotes.conn.commit()
import webnotes.model.sync
webnotes.model.sync.sync('website', 'blog', 1)
webnotes.conn.begin()