juzhiyuan commented on a change in pull request #5727:
URL: https://github.com/apache/apisix/pull/5727#discussion_r763978097



##########
File path: apisix/plugins/csrf.lua
##########
@@ -0,0 +1,150 @@
+local core        = require("apisix.core")
+local ngx         = ngx
+local plugin_name = "csrf"
+local ngx_encode_base64 = ngx.encode_base64
+local ngx_decode_base64 = ngx.decode_base64
+local ck = require "resty.cookie"
+local math = math
+
+local lrucache = core.lrucache.new({
+    type = "plugin",
+})
+
+local schema = {
+       type = "object",
+       properties = {
+               key = {
+                       description = "use to generate csrf token",
+                       type = "string",
+               },
+               expires = {
+                       description = "expires time for csrf token",
+                       type = "integer",
+                       default = 7200
+               },
+    name = {

Review comment:
       Format your codes?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to