fix broadcast typo.

This commit is contained in:
Miroslav Šedivý 2024-07-18 23:54:20 +02:00
parent 6a9cb24743
commit 6d72a795ef
4 changed files with 9 additions and 9 deletions

View file

@ -22,7 +22,7 @@ func (h *RoomHandler) broadcastStatus(w http.ResponseWriter, r *http.Request) er
})
}
func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) error {
func (h *RoomHandler) broadcastStart(w http.ResponseWriter, r *http.Request) error {
data := &BroadcastStatusPayload{}
if err := utils.HttpJsonRequest(w, r, data); err != nil {
return err
@ -42,7 +42,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) err
}
h.sessions.AdminBroadcast(
event.BORADCAST_STATUS,
event.BROADCAST_STATUS,
message.BroadcastStatus{
IsActive: broadcast.Started(),
URL: broadcast.Url(),
@ -51,7 +51,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) err
return utils.HttpSuccess(w)
}
func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) error {
func (h *RoomHandler) broadcastStop(w http.ResponseWriter, r *http.Request) error {
broadcast := h.capture.Broadcast()
if !broadcast.Started() {
return utils.HttpUnprocessableEntity("server is not broadcasting")
@ -60,7 +60,7 @@ func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) erro
broadcast.Stop()
h.sessions.AdminBroadcast(
event.BORADCAST_STATUS,
event.BROADCAST_STATUS,
message.BroadcastStatus{
IsActive: broadcast.Started(),
URL: broadcast.Url(),

View file

@ -62,8 +62,8 @@ func (h *RoomHandler) Route(r types.Router) {
r.With(auth.AdminsOnly).Route("/broadcast", func(r types.Router) {
r.Get("/", h.broadcastStatus)
r.Post("/start", h.boradcastStart)
r.Post("/stop", h.boradcastStop)
r.Post("/start", h.broadcastStart)
r.Post("/stop", h.broadcastStop)
})
r.With(auth.CanAccessClipboardOnly).With(auth.HostsOnly).Route("/clipboard", func(r types.Router) {

View file

@ -265,7 +265,7 @@ paths:
tags:
- room
summary: start broadcast
operationId: boradcastStart
operationId: broadcastStart
responses:
'204':
description: OK
@ -302,7 +302,7 @@ paths:
tags:
- room
summary: stop broadcast
operationId: boradcastStop
operationId: broadcastStop
responses:
'204':
description: OK

View file

@ -70,7 +70,7 @@ const (
)
const (
BORADCAST_STATUS = "broadcast/status"
BROADCAST_STATUS = "broadcast/status"
)
const (