mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
21 lines
540 B
Go
21 lines
540 B
Go
|
package admin
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/owncast/owncast/controllers"
|
||
|
"github.com/owncast/owncast/core/data"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
// ResetYPRegistration will clear the YP protocol registration key.
|
||
|
func ResetYPRegistration(w http.ResponseWriter, r *http.Request) {
|
||
|
log.Traceln("Resetting YP registration key")
|
||
|
if err := data.SetDirectoryRegistrationKey(""); err != nil {
|
||
|
log.Errorln(err)
|
||
|
controllers.WriteSimpleResponse(w, false, err.Error())
|
||
|
return
|
||
|
}
|
||
|
controllers.WriteSimpleResponse(w, true, "reset")
|
||
|
}
|