ziwen 2 년 전
부모
커밋
d3fd9a3749
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      routers/voice_broadcast.go

+ 1 - 1
routers/voice_broadcast.go

@@ -10,6 +10,6 @@ func InitVoiceBroadcast(r *gin.Engine)  {
 	rGroup := r.Group("api/voice/broadcast").Use(middleware.Token())
 	rGroup.POST("/list", voice_broadcast.BroadcastList)
 	rGroup.POST("/add", voice_broadcast.AddBroadcast)
-	rGroup.POST("/section/list", voice_broadcast.SectionList)
+	rGroup.GET("/section/list", voice_broadcast.SectionList)
 }