mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
parent
1924528614
commit
a88c4399d4
5
group.go
5
group.go
@ -16,11 +16,6 @@ type (
|
|||||||
// Use implements `Echo#Use()` for sub-routes within the Group.
|
// Use implements `Echo#Use()` for sub-routes within the Group.
|
||||||
func (g *Group) Use(m ...MiddlewareFunc) {
|
func (g *Group) Use(m ...MiddlewareFunc) {
|
||||||
g.middleware = append(g.middleware, m...)
|
g.middleware = append(g.middleware, m...)
|
||||||
// Allow all requests to reach the group as they might get dropped if router
|
|
||||||
// doesn't find a match, making none of the group middleware process.
|
|
||||||
g.echo.Any(g.prefix+"*", func(c Context) error {
|
|
||||||
return ErrNotFound
|
|
||||||
}, g.middleware...)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group.
|
// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group.
|
||||||
|
Loading…
Reference in New Issue
Block a user