8 lines
204 B
Python
8 lines
204 B
Python
|
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()
|