mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
bb8aea6446
This reverts commit b96cd2e93e
.
13 lines
243 B
Go
13 lines
243 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/core"
|
|
"github.com/owncast/owncast/utils"
|
|
)
|
|
|
|
func Ping(w http.ResponseWriter, r *http.Request) {
|
|
id := utils.GenerateClientIDFromRequest(r)
|
|
core.SetViewerIdActive(id)
|
|
}
|