mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 12:19:12 +00:00
fixed conflict
This commit is contained in:
11
patches/april_2013/p04_update_role_in_pages.py
Normal file
11
patches/april_2013/p04_update_role_in_pages.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import webnotes
|
||||
import webnotes.model
|
||||
def execute():
|
||||
for p in ["activity", "todo", "questions", "question-view"]:
|
||||
pbean = webnotes.bean("Page", p)
|
||||
pbean.doclist.append({
|
||||
"doctype": "Page Role",
|
||||
"role": "All",
|
||||
"parentfield": "roles"
|
||||
})
|
||||
pbean.save()
|
||||
Reference in New Issue
Block a user