Преглед на файлове

Merge remote-tracking branch 'origin/master'

Paul преди 5 години
родител
ревизия
5cb37e2535
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      middleware/cors/cors.go

+ 1
- 1
middleware/cors/cors.go Целия файл

@@ -13,7 +13,7 @@ func Cors() gin.HandlerFunc {
13 13
 
14 14
 	config.AddAllowMethods(http.MethodDelete, http.MethodOptions, http.MethodPatch)
15 15
 	// x-requested-with antd上传组件需要
16
-	config.AddAllowHeaders("Authorization", "X-Require-Cookie", "X-Device", "x-requested-with")
16
+	config.AddAllowHeaders("Authorization", "X-Require-Cookie", "X-Device", "x-requested-with", "X-Tourist-Id")
17 17
 	config.AllowCredentials = true
18 18
 	config.AllowOriginFunc = func(origin string) bool {
19 19
 		if gin.Mode() == gin.DebugMode {