photoprism/internal/auth/session/session_delete.go
Michael Mayer fb186bf34d Backend: Move session package to /internal/auth/session
Signed-off-by: Michael Mayer <michael@photoprism.app>
2024-07-02 08:11:17 +02:00

18 lines
298 B
Go

package session
import (
"github.com/photoprism/photoprism/internal/entity"
)
// Delete removes a client session by id.
func (s *Session) Delete(id string) error {
if id == "" {
return nil
}
if m, err := entity.FindSession(id); err != nil {
return err
} else {
return m.Delete()
}
}