Replies: 1 comment 2 replies
-
That's strange, rodauth-rails should still be retrieving the URL host from |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The link text I get in my rodauth emails, from all environments, is missing the
host
.NOTE: The
multi_tenant_path_key
is actually coming through perfectly!I do have my mailer setup, for example in development:
I'm guessing it is because I have a custom prefix, which is essentially:
NOTE: I figured out how to route the colon (
:
) in both the Rails route and the Roda route tree, but I don't think that's relevant to this issue, and I only mention it to prevent confusion, as it is very uncommon...Rails:
namespace "my_api", path: "my:api", defaults: {api: ":api"} do
Roda:
r.on("my:api") do
Beta Was this translation helpful? Give feedback.
All reactions