mirror of
https://github.com/frappe/lms.git
synced 2026-04-30 20:59:34 +03:00
16 lines
223 B
Python
16 lines
223 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
fields = [
|
|
"courses",
|
|
"batches",
|
|
"certified_participants",
|
|
"jobs",
|
|
"statistics",
|
|
"notifications",
|
|
]
|
|
|
|
for field in fields:
|
|
frappe.db.set_single_value("LMS Settings", field, 1)
|