Mateo Kurti

Results 6 issues of Mateo Kurti

I'm trying to find some guide on configuring the von-network on a k8s cluster. I'm finding it pretty hard to find something concrete, for a real deployment. This is probably...

Microsoft Identity Platform suggest using `Authorization Code Flow` instead of the `Implicit Grant Flow`, now for all applications. The reason for that begins with the plans for third-party cookies being...

**Describe the issue** I recently upgraded `model-bakery` from version 1.3.2 to 1.7.0. Also, I upgraded Django from 3.2.2 to 4.0 and django-safedelete from 1.0.0 to 1.3.0. After that upgrade, I...

I can see that changes to support Python 3.10 have been made, but the latest release 2.0.0 does not include those changes. Can you do a release that supports Python...

I have a helper function which creates a temporary file and returns it. That's how it is done synchronously: ```python def create_temp_file(file, suffix): temp_file = NamedTemporaryFile(suffix=suffix) temp_file.write(file.read()) temp_file.seek(0) return temp_file...

I want to be able to add a claim on the token, based on something else apart from user. The classmethod `get_token` only accepts `user` as an argument, allowing to...