HI
I added some url in my redirect URL filed in email verification (using link).
And now I am getting email_verifed keyword and message keyword correctly.
I have different database connection.
is there any method for appending connection details in the url ?
Is there any document for this
I want to add connection.name in that redirection url
{% if connection.name == ‘impart-local’ %}
<a href="{{ url }}"></a>
{% elsif connection.name == ‘impart-dev’ %}
<a href="{{ url }}"></a>
{% else %}
<a href="{{ url }}"></a>
{% endif %}
How can I pass connection.name also to this…
I want connection.name and the default query params that alredy given from the AUTH.
How can i do this
Please share any document