You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is a common use case to have something like this in templates: {% if request.token %}{{JWT_QUERYSTRING_ARG}}?={{request.token.jwt}}{% endif %}
This requires importing JWT_QUERYSTRING_ARG in the view layer and adding it to the context, and could be better achieved with a template tag {% request_token_querystring %}.
The text was updated successfully, but these errors were encountered:
It is a common use case to have something like this in templates:
{% if request.token %}{{JWT_QUERYSTRING_ARG}}?={{request.token.jwt}}{% endif %}
This requires importing
JWT_QUERYSTRING_ARG
in the view layer and adding it to the context, and could be better achieved with a template tag{% request_token_querystring %}
.The text was updated successfully, but these errors were encountered: