11 lines
229 B
Python
11 lines
229 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
show_certified_members = frappe.db.get_single_value(
|
|
"LMS Settings", "certified_participants"
|
|
)
|
|
|
|
if show_certified_members:
|
|
frappe.db.set_single_value("LMS Settings", "certified_members", 1)
|