op-packages/luci-app-syncthing/luasrc/controller/syncthing.lua
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

22 lines
562 B
Lua

module("luci.controller.syncthing", package.seeall)
function index()
if not nixio.fs.access("/etc/config/syncthing") then
return
end
local page = entry({"admin", "nas", "syncthing"}, cbi("syncthing"), _("Syncthing"))
page.order = 10
page.dependent = true
page.acl_depends = { "luci-app-syncthing" }
entry({"admin","nas","syncthing","status"},call("act_status")).leaf=true
end
function act_status()
local e={}
e.running=luci.sys.call("pgrep syncthing >/dev/null")==0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end