HandleMany like `Handle` but can register more than one path and HTTP method routes separated by whitespace on the same controller's method. Keep note that if the controller's method input arguments are path parameters dependencies they should match with each of the given paths. Just like `Party#Ha
(method, path, funcName string, middleware ...context.Handler)
| 485 | // |
| 486 | // HandleMany will override any routes of this "funcName". |
| 487 | func (c *ControllerActivator) HandleMany(method, path, funcName string, middleware ...context.Handler) []*router.Route { |
| 488 | return c.handleMany(method, path, funcName, true, middleware...) |
| 489 | } |
| 490 | |
| 491 | func (c *ControllerActivator) handleMany(method, path, funcName string, override bool, middleware ...context.Handler) []*router.Route { |
| 492 | if method == "" || path == "" || funcName == "" || |
nothing calls this directly
no test coverage detected