1、action中各动作添加数据权限

2、修改jwt中key为常量
This commit is contained in:
linwenxiang
2020-09-03 10:49:31 +08:00
parent d3622c93fc
commit 4b8c372038
8 changed files with 54 additions and 16 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import (
)
func ExtractClaims(c *gin.Context) jwt.MapClaims {
claims, exists := c.Get("JWT_PAYLOAD")
claims, exists := c.Get(jwt.JwtPayloadKey)
if !exists {
return make(jwt.MapClaims)
}