**I'm submitting a ** (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[X] feature request
Current behavior
the router blocks the routes that start with the same name
Expected behavior
the router allow both routes
Minimal reproduction of the problem with instructions
this Route:
@Model(name = "Campanas", tableName = "scm_cpg_main", version = 1)
@Route(route = "campaigns")
block this:
@ControllerAction(description = "Accion para recibir ingresos de una campana", name = "campaignIncome", version = 1)
@GET
@ParamOptional(defaultsTo = "", name = "init_date")
@ParamOptional(defaultsTo = "", name = "finish_date")
@Route(route = "campaigns/:id_cpg/incomes", ignorePath = true)
What is the motivation / use case for changing the behavior?
improve the framework
**I'm submitting a ** (check one with "x")
Current behavior
the router blocks the routes that start with the same name
Expected behavior
the router allow both routes
Minimal reproduction of the problem with instructions
this Route:
block this:
What is the motivation / use case for changing the behavior?
improve the framework