Compare commits

2 Commits

Author SHA1 Message Date
eeb9e746b8 Merge pull request 'fix/bossraid-slot-reuse' (#2) from fix/bossraid-slot-reuse into main
All checks were successful
Server CI/CD / lint-and-build (push) Successful in 18s
Server CI/CD / deploy (push) Successful in 57s
Reviewed-on: #2
2026-03-19 04:18:32 +00:00
7db63d2d92 Merge pull request 'Fix: 지갑 미발견 시 자동 생성 fallback 추가' (#1) from fix/wallet-auto-create into main
All checks were successful
Server CI/CD / lint-and-build (push) Successful in 21s
Server CI/CD / deploy (push) Successful in 1m0s
Reviewed-on: #1
2026-03-19 02:30:28 +00:00

View File

@@ -33,7 +33,7 @@ func New() *fiber.App {
app.Use(middleware.SecurityHeaders)
app.Use(cors.New(cors.Config{
AllowOrigins: "https://a301.tolelom.xyz",
AllowHeaders: "Origin, Content-Type, Authorization, Idempotency-Key, X-API-Key, X-Requested-With",
AllowHeaders: "Origin, Content-Type, Authorization, Idempotency-Key, X-API-Key",
AllowMethods: "GET, POST, PUT, PATCH, DELETE",
AllowCredentials: true,
}))