op-packages/luci-theme-design/ucode/controller/design_theme.uc
github-actions[bot] e2f4c3d0b5 🐤 Sync 2026-05-08 20:31:49
2026-05-08 20:31:49 +08:00

19 lines
404 B
Ucode

'use strict';
import { glob, unlink } from 'fs';
return {
menu_flush: function() {
for (let path in glob(
'/tmp/luci-indexcache', '/tmp/luci-indexcache.*',
'/var/luci-indexcache', '/var/luci-indexcache.*'
))
unlink(path);
system('rm -rf /tmp/luci-modulecache /var/luci-modulecache 2>/dev/null');
http.prepare_content('application/json');
http.write_json({ flushed: true });
}
};