mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-06-28 06:46:12 +00: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:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ import (
|
||||
"github.com/emersion/go-webdav/carddav"
|
||||
"github.com/gin-contrib/gzip"
|
||||
"github.com/gin-contrib/sessions"
|
||||
"github.com/gin-contrib/sessions/memstore"
|
||||
"github.com/gin-contrib/sessions/cookie"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/mssola/useragent"
|
||||
"github.com/olahol/melody"
|
||||
@@ -61,8 +61,7 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
// 这里用的是内存存储,意味着重启后所有 session 会丢失,需要重新登录
|
||||
sessionStore = memstore.NewStore([]byte("ATN51UlxVq1Gcvdf"))
|
||||
sessionStore = cookie.NewStore([]byte("ATN51UlxVq1Gcvdf"))
|
||||
|
||||
HttpMethods = []string{
|
||||
http.MethodGet,
|
||||
|
||||
Reference in New Issue
Block a user