8 lines
142 B
Python
8 lines
142 B
Python
import frappe
|
|
|
|
|
|
# no context object is accepted
|
|
def get_context():
|
|
context = frappe._dict()
|
|
context.body = "Custom Content"
|
|
return context
|