You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
408 B
18 lines
408 B
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) |
|
} |
|
}
|
|
|