Closed danieljaouen closed 8 years ago
@danieljaouen it seems your router.ex
file has incorrect module loading. Please make sure that your scope command is not assuming the module. So instead of:
scope "/", Email do
(...)
addict :routes
(...)
end
make sure you have something like this instead:
scope "/" do
(...)
addict :routes
(...)
end
Does this help?
Yep, that did the trick. Thanks!
Hi,
I'm new to addict and relatively new to Phoenix and Elixir as well, so I might have done something wrong on my end, but I'm seeing an error immediately upon visiting the "/login" and "/register" pages. Here's the error: