Browse Source

用户注销操作接口

master
huangjiajun 1 week ago
parent
commit
daa3c34356
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      app/hdl/hdl_user.go

+ 2
- 5
app/hdl/hdl_user.go View File

@@ -5,11 +5,9 @@ import (
"applet/app/e"
"applet/app/es/hdl"
md2 "applet/app/es/md"
"applet/app/lib/auth"
"applet/app/md"
"applet/app/svc"
"applet/app/utils"
"applet/app/utils/cache"
"applet/app/utils/qrcode"
"code.fnuoos.com/EggPlanet/egg_models.git/src/implement"
"code.fnuoos.com/EggPlanet/egg_models.git/src/model"
@@ -18,7 +16,6 @@ import (
"code.fnuoos.com/go_rely_warehouse/zyos_go_es.git/es"
"code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git/rabbit"
"context"
"fmt"
"github.com/gin-gonic/gin"
"github.com/olivere/elastic/v7"
"github.com/syyongx/php2go"
@@ -368,8 +365,8 @@ func Delete(c *gin.Context) {
}
}
// 清掉token
cacheKey := fmt.Sprintf(auth.TokenKey, user.Id)
_, err = cache.SetEx(cacheKey, "", 1)
//cacheKey := fmt.Sprintf(auth.TokenKey, user.Id)
//_, err = cache.SetEx(cacheKey, "", 1)
e.OutSuc(c, "success", nil)
return
}

Loading…
Cancel
Save