server: remove old unused routes (#3845)

This commit is contained in:
6543 2024-07-22 01:05:05 +02:00 committed by GitHub
parent b2970dbf0d
commit d2b5e203b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,8 +15,6 @@
package router package router
import ( import (
"net/http"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/rs/zerolog" "github.com/rs/zerolog"
@ -272,12 +270,4 @@ func apiRoutes(e *gin.RouterGroup) {
} }
} }
} }
// TODO: remove with 3.x
e.Any("/hook", func(c *gin.Context) {
c.String(http.StatusGone, "use /api/hook")
})
e.Any("/stream/events", func(c *gin.Context) {
c.String(http.StatusGone, "use /api/stream/events")
})
} }