mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🎨 Add a 'Remember me' checkbox when logging in to save a session https://github.com/siyuan-note/siyuan/pull/14964 https://github.com/siyuan-note/siyuan/issues/13147
This commit is contained in:
parent
f3fe90cbd8
commit
46d6fbf033
2 changed files with 9 additions and 3 deletions
|
|
@ -92,6 +92,13 @@ func LoginAuth(c *gin.Context) {
|
|||
ret.Code = 1
|
||||
ret.Msg = Conf.Language(22)
|
||||
logging.LogWarnf("invalid captcha")
|
||||
|
||||
workspaceSession.Captcha = gulu.Rand.String(7) // https://github.com/siyuan-note/siyuan/issues/13147
|
||||
if err := session.Save(c); err != nil {
|
||||
logging.LogErrorf("save session failed: " + err.Error())
|
||||
c.Status(http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue