You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
json_params is a function that you wrap around your before/actions.
locallapis=require("lapis")
localapp=lapis.Application()
localjson_params=require("lapis.application").json_paramsapp:before_filter(json_params(function(self)
-- do your "before" things hereend))
local lapis = require("lapis")
local app = lapis.Application()
local json_params = require("lapis.application").json_params
app:before_filter(json_params)
The text was updated successfully, but these errors were encountered: