İshak Okutan

Results 4 comments of İshak Okutan

This was a painful experience. Please reprioritize this issue.

I got this error also. I debugged it and I found the reason for the error is about SSL config. ``` CHANNEL_LAYERS = {     'default': {         'BACKEND': 'channels_redis.core.RedisChannelLayer',         'CONFIG': {            ...

Should be in settings.py purely, not in REST_AUTH_SERIALIZERS dict. instead of this: ``` REST_AUTH_SERIALIZERS = { 'REST_AUTH_PW_RESET_USE_SITES_DOMAIN': True, } ``` use this: `REST_AUTH_PW_RESET_USE_SITES_DOMAIN = True `

Thanks @chrda81, your solution is very impressive. I made some changes on your code to take a different type of output. ```DEFAULT_LANG = settings.PARLER_LANGUAGES['default'].get('fallback') class TranslatedSerializerMixin(object): """ Get values without...