cat access.lua function IncomingHttpRequestFilter(method, uri, ip, username, httpHeaders) -- Only allow GET requests for non-admin users if method == 'GET' or method == 'POST' then return true elseif username == 'admin' then return true else return false end end