Remove wwwroot/ from .gitignore so production deployment is just git pull. Changes: - wwwroot/index.ui: Shell layout with sidebar and main content - wwwroot/global_menu.ui: Global navigation menu (22 modules) - wwwroot/dashboard_for_sage/: Dashboard widgets and stats - wwwroot/product_management/: Product management pages - Module symlinks (accounting, rbac, bricks, etc.) Ignored: .DS_Store, *.bak, tmp/
11 lines
275 B
Plaintext
11 lines
275 B
Plaintext
import json
|
|
from appPublic.registerfunction import RegisterFunction
|
|
from appPublic.log import debug
|
|
|
|
rf = RegisterFunction()
|
|
funcs = list(rf.registKW.keys())
|
|
debug(f'Registered functions: {funcs}')
|
|
|
|
result = {'functions': funcs}
|
|
return json.dumps(result, ensure_ascii=False)
|