bac6ae0cbd
Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
315 B
Go
12 lines
315 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.SessMaxAge(), s.conf.SessTimeout()).SetContext(c)
|
|
}
|