Mohammad Ali Mehdizadeh
Mohammad Ali Mehdizadeh
@bittner thanks for your response this [page](https://developers.google.com/analytics/devguides/collection/gtagjs/enhanced-ecommerce) describe how to set enhanced eCommerce with gtag but i don't see any thing for this purpose in documentation and in code. Is...
Hi, I hope to solve this problem. but i am new to git contribution. can you help me to solve it?
thanks you are really kind 1.You'd have to adjust the regular expression in templatetags/google_analytics_gtag.py, so that it allows the patterns @carlosnasillo listed above. it is already adjusted to regular expression...
I expect compiled version work the same way as the CPython. @elisbyberi But It doesn't!
I guess you set `DEFAULT_RENDERER_CLASSES = []` in your settings!
The traceback said that you don't have any renderer!
It seems the [results](https://github.com/python-websockets/websockets/actions/runs/4725358468/job/12812860881#step:5:27) expired :(
I can't find set variable way. but you can override `"AUTH_TOKEN_CLASSES": ("rest_framework_simplejwt.tokens.AccessToken",),` in settings and write your own `AccessToken` class, and over ride the behaviour of `check_exp` method. for ex:...
Maybe a better way is using [Constance](https://django-constance.readthedocs.io/en/latest/), and change this behaviour in realtime. ``` class MyAccessToken(AccessToken): def check_exp( self, claim: str = "exp", current_time: Optional[datetime] = None ) -> None:...
If you want to have all tokens of all users, you can write a wrapper around the `rest_framework_simplejwt.authentication.JWTAuthentication.authenticate` and save user's tokens in a model, for example: ``` class UserJWT(models.Model):...