package gsmaster import ( "bamort/user" "github.com/gin-gonic/gin" ) func RegisterRoutes(r *gin.RouterGroup) { maintGrp := r.Group("/maintenance") maintGrp.Use(user.RequireMaintainer()) { maintGrp.GET("", GetMasterData) maintGrp.GET("/skills", GetMDSkills) maintGrp.GET("/skills-enhanced", GetEnhancedMDSkills) // New enhanced endpoint maintGrp.POST("/skills-enhanced", CreateEnhancedMDSkill) // Create new skill maintGrp.GET("/skills/:id", GetMDSkill) maintGrp.GET("/skills-enhanced/:id", GetEnhancedMDSkill) // New enhanced endpoint maintGrp.PUT("/skills/:id", UpdateMDSkill) maintGrp.PUT("/skills-enhanced/:id", UpdateEnhancedMDSkill) // New enhanced endpoint maintGrp.POST("/skills", AddSkill) maintGrp.DELETE("/skills/:id", DeleteMDSkill) maintGrp.GET("/weaponskills", GetMDWeaponSkills) maintGrp.GET("/weaponskills-enhanced", GetEnhancedMDWeaponSkills) // New enhanced endpoint maintGrp.GET("/weaponskills/:id", GetMDWeaponSkill) maintGrp.GET("/weaponskills-enhanced/:id", GetEnhancedMDWeaponSkill) // New enhanced endpoint maintGrp.PUT("/weaponskills/:id", UpdateMDWeaponSkill) maintGrp.PUT("/weaponskills-enhanced/:id", UpdateEnhancedMDWeaponSkill) // New enhanced endpoint maintGrp.POST("/weaponskills", AddWeaponSkill) maintGrp.DELETE("/weaponskills/:id", DeleteMDWeaponSkill) maintGrp.GET("/spells", GetMDSpells) maintGrp.GET("/spells-enhanced", GetEnhancedMDSpells) // New enhanced endpoint maintGrp.GET("/spells/:id", GetMDSpell) maintGrp.GET("/spells-enhanced/:id", GetEnhancedMDSpell) // New enhanced endpoint maintGrp.PUT("/spells/:id", UpdateMDSpell) maintGrp.PUT("/spells-enhanced/:id", UpdateEnhancedMDSpell) // New enhanced endpoint maintGrp.POST("/spells", AddSpell) maintGrp.DELETE("/spells/:id", DeleteMDSpell) maintGrp.GET("/equipment", GetMDEquipments) maintGrp.GET("/equipment-enhanced", GetEnhancedMDEquipment) // New enhanced endpoint maintGrp.GET("/equipment/:id", GetMDEquipment) maintGrp.GET("/equipment-enhanced/:id", GetEnhancedMDEquipmentItem) // New enhanced endpoint maintGrp.PUT("/equipment/:id", UpdateMDEquipment) maintGrp.PUT("/equipment-enhanced/:id", UpdateEnhancedMDEquipmentItem) // New enhanced endpoint maintGrp.POST("/equipment", AddEquipment) maintGrp.DELETE("/equipment/:id", DeleteMDEquipment) maintGrp.GET("/weapons", GetMDWeapons) maintGrp.GET("/weapons-enhanced", GetEnhancedMDWeapons) // New enhanced endpoint maintGrp.GET("/weapons/:id", GetMDWeapon) maintGrp.GET("/weapons-enhanced/:id", GetEnhancedMDWeapon) // New enhanced endpoint maintGrp.PUT("/weapons/:id", UpdateMDWeapon) maintGrp.PUT("/weapons-enhanced/:id", UpdateEnhancedMDWeapon) // New enhanced endpoint maintGrp.POST("/weapons", AddWeapon) maintGrp.DELETE("/weapons/:id", DeleteMDWeapon) } }