mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
18 lines
408 B
Go
18 lines
408 B
Go
package controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/core"
|
|
)
|
|
|
|
// GetConnectedClients returns currently connected clients.
|
|
func GetConnectedClients(w http.ResponseWriter, r *http.Request) {
|
|
clients := core.GetChatClients()
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
if err := json.NewEncoder(w).Encode(clients); err != nil {
|
|
InternalErrorHandler(w, err)
|
|
}
|
|
}
|