19 lines
398 B
Go
19 lines
398 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-contrib/cors"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Cors() gin.HandlerFunc {
|
|
return cors.New(cors.Config{
|
|
AllowAllOrigins: true,
|
|
AllowHeaders: []string{
|
|
"Origin", "Content-Length", "Content-Type", "Workspace", "Request-Id", "Authorization", "Token",
|
|
},
|
|
AllowMethods: []string{
|
|
"GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS",
|
|
},
|
|
})
|
|
}
|