Use System Users for Webinterface Auth

This commit is contained in:
Samuel Lorch 2023-05-14 03:24:58 +02:00
parent bd26cf893d
commit 0e5cd1d3a5
4 changed files with 13 additions and 8 deletions

View file

@ -18,7 +18,7 @@ const SessionLifeTime = time.Minute * 15
type Session struct {
Username string
Expires time.Time
// TODO Add []websocket.Conn pointer to close all active websockets, alternativly do this via context cancelation
// TODO Add []websocket.Conn pointer to close all active websockets, alternatively do this via context cancelation
}
type SessionResponse struct {