refactor: 클라이언트 직접 호출 BossRaid 엔드포인트 제거
클라이언트가 MMO 서버 경유로 보스 레이드 입장하도록 변경하면서 불필요해진 public /api/bossraid/ 라우트와 핸들러 제거. 입장은 MMO 서버 → internal API 경로만 사용. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -131,11 +131,6 @@ func Register(
|
||||
chainAdmin.Post("/reward", middleware.IdempotencyRequired, chainH.GrantReward)
|
||||
chainAdmin.Post("/template", middleware.IdempotencyRequired, chainH.RegisterTemplate)
|
||||
|
||||
// Boss Raid - Client entry (JWT authenticated)
|
||||
bossRaid := api.Group("/bossraid", middleware.Auth)
|
||||
bossRaid.Post("/entry", brH.RequestEntryAuth)
|
||||
bossRaid.Get("/my-entry-token", brH.GetMyEntryToken)
|
||||
|
||||
// Player Profile (authenticated)
|
||||
p := api.Group("/player", middleware.Auth)
|
||||
p.Get("/profile", playerH.GetProfile)
|
||||
|
||||
Reference in New Issue
Block a user