This commit is contained in:
lejianwen
2025-01-15 20:26:26 +08:00
parent cca191aad3
commit a4433e6113
3 changed files with 7 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ func RustAuth() gin.HandlerFunc {
//验证token
//检查是否设置了jwt key
if global.Config.Jwt.Key != "" {
if len(global.Jwt.Key) > 0 {
uid, _ := service.AllService.UserService.VerifyJWT(token)
if uid == 0 {
c.JSON(401, gin.H{