photoprism/internal/session/session_new.go
Michael Mayer 3b9890e345 Config: Update options report, parameter names and tests
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-25 06:19:56 +02:00

13 lines
321 B
Go

package session
import (
"github.com/gin-gonic/gin"
"github.com/photoprism/photoprism/internal/entity"
)
// New creates a session with a context if it is specified.
func (s *Session) New(c *gin.Context) (m *entity.Session) {
return entity.NewSession(s.conf.SessionMaxAge(), s.conf.SessionTimeout()).SetContext(c)
}