delete endpoint

This commit is contained in:
Sotirios Pupakis
2025-11-20 16:18:52 +01:00
parent ed9489b01a
commit cf26ac4bed
3 changed files with 35 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ func main() {
back.POST("/addon", controllers.CheckAllowed, controllers.CreateAddon)
back.GET("/nextToBeIndexed", controllers.CheckAllowed, controllers.GetNextToBeIndexed)
back.POST("/submitAddon", controllers.CheckAllowed, controllers.SaveIndexingResult)
back.DELETE("/deleteAddon", controllers.CheckAllowed, controllers.DeleteAddon)
}
admin := r.Group("/admin")