docs(api): update API documentation with new session listing endpoint

feat(session): add API endpoint to list active sessions
This commit is contained in:
2026-03-05 18:29:58 +08:00
parent e400cc1869
commit f07b89842a
2 changed files with 51 additions and 1 deletions
+1 -1
View File
@@ -271,7 +271,7 @@ func JoinSession(userID int, userName string, token string) error {
}
sessionMap[sessionID] = session
postLog.Info(fmt.Sprintf("[JoinSession] User [%d]%s joined session %s with token %s", userID, userName, sessionID, token))
postLog.Debug(fmt.Sprintf("[JoinSession] User [%d]%s joined session %s with token %s", userID, userName, sessionID, token))
return nil
}