mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-09-25 21:42:18 +00:00
allow websocket connections cross-origin
This commit is contained in:
@@ -2,6 +2,7 @@ package server
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strconv"
|
||||
"time"
|
||||
@@ -29,6 +30,7 @@ const (
|
||||
var upgrader = websocket.Upgrader{
|
||||
ReadBufferSize: 1024,
|
||||
WriteBufferSize: 1024,
|
||||
CheckOrigin: func(r *http.Request) bool { return true },
|
||||
}
|
||||
|
||||
// GetEvents will upgrade the connection to a Websocket and will stream
|
||||
|
Reference in New Issue
Block a user