mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-14 10:13:57 +00:00
9 lines
244 B
Python
9 lines
244 B
Python
from __future__ import unicode_literals
|
|
import webnotes
|
|
|
|
@webnotes.whitelist()
|
|
def update(arg=None):
|
|
"""update modules"""
|
|
webnotes.conn.set_global('modules_list', webnotes.form_dict['ml'])
|
|
webnotes.msgprint('Updated')
|
|
webnotes.clear_cache() |