Mateo Kurti

Results 11 comments of Mateo Kurti

> You should read this first; https://github.com/bcgov/von-network/tree/main/openshift#warning I'm not looking on using OpenShift anyway. Sorry if I wasn't clear. I want to deploy it in Kubernetes, but I can't see...

@pennersr If you consider this as something that might be good to have on django-allauth, since I am currently working on it I can make a Pull Request as soon...

@colin-fsa Yes, that was the idea I had. I haven't tested it with other providers, but in theory it is designed to work. I'll push the changes on my fork...

@m-novikov @swegener @michael-grunder any idea if this is abandoned or not guys?

I don't think this repo is taking any update. I suggest you to take a look at https://github.com/iMerica/dj-rest-auth

The same problem happened to me and it gets solved when downgrading to 2.1.5. It is related to the allauth import I think. Is there any solution apart from downgrading...

@RommelTJ I was upgrading all dependencies of my project to latest, so I tried the latest version first and it didn't work. Then tried downgrading until 2.1.5 seemed to work....

Seems related to #166 and I'm facing the same issue. This fix is really needed.

@quanta-kt The way I solved this was by creating a custom `JWTSerializer` and overwriting `to_representation` method. Something like this: ```py class CustomJWTSerializer(JWTSerializer): def to_representation(self, instance): tenant = self.context["request"].data.get("tenant") instance["access_token"]["tenant"] =...