mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
17 lines
377 B
Lua
17 lines
377 B
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require("dkjson")
|
|
local blog_utils = require("blog_utils")
|
|
|
|
sendHTTPContentTypeHeader('application/json')
|
|
|
|
print(json.encode({
|
|
success = true,
|
|
posts = blog_utils.readPostsFromRedis(_SESSION['user'])
|
|
}))
|