Skip to content
Snippets Groups Projects
get_user.lua 485 B
print("We're going to the races");

foo = 1 + 1;

r = empty_response();
r:set_status(200);
r:set_header("X-Powered-By", "Swerve");
r:set_header("Content-Type", "text/plain");
r:set_body("This is my only response");

--return r

print(params.user_id)

r = response(200, "application/json", json_encode({ user_id = params.user_id, path = params.script_path }));
--
--r:unset_body();
--r:set_status(204);

return r

-- return response(200, "application/json", '{ "foo": ' .. foo .. ' }')