1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2024-12-29 10:48:21 +01:00
antd-lua-plugin/example-app/os/fs/move.lua
2018-09-19 15:08:49 +02:00

14 lines
244 B
Lua

auth_or_die("User unauthorized. Please login")
local rq = (JSON.decodeString(REQUEST.query.json))
if rq ~= nil then
local r,m = require("fs.vfs").move(rq.src,rq.dest)
if r then result(r) else fail(m) end
else
fail("Uknown request")
end