13 lines
151 B
Python
13 lines
151 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.db.set_value(
|
|
"Top Bar Item",
|
|
{"url": "/classes"},
|
|
{
|
|
"label": "Batches",
|
|
"url": "/batches",
|
|
},
|
|
)
|