mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
8 lines
224 B
Go
8 lines
224 B
Go
package middleware
|
|
|
|
import "net/http"
|
|
|
|
// DisableFloc will tell Google to not use this response in their FLoC tracking.
|
|
func DisableFloc(w http.ResponseWriter) {
|
|
w.Header().Set("Permissions-Policy", "interest-cohort=()")
|
|
}
|