Closed alexfilatov closed 1 year ago
When phoenix 1.7 with Verified Routes enabled, getting error when requesting /exq dashboard - helper here cannot get :root route https://github.com/akira/exq_ui/blob/master/lib/exq_ui_web/router/helpers.ex#L24
/exq
:root
** (UndefinedFunctionError) function nil.exq_ui_path/2 is undefined
Root cause is use Phoenix.Router, helpers: false in MyAppWeb.router()
use Phoenix.Router, helpers: false
MyAppWeb.router()
@alexfilatov could you try the branch https://github.com/akira/exq_ui/pull/143
thank you so much @ananthakumaran!
When phoenix 1.7 with Verified Routes enabled, getting error when requesting
/exq
dashboard - helper here cannot get:root
route https://github.com/akira/exq_ui/blob/master/lib/exq_ui_web/router/helpers.ex#L24** (UndefinedFunctionError) function nil.exq_ui_path/2 is undefined
Root cause is
use Phoenix.Router, helpers: false
inMyAppWeb.router()