Jonathan Hiles

Results 63 comments of Jonathan Hiles

I'd love to see this merged. Happy to help where I can. 😄

At present, the view decodes the redirect URI from the `state` but since the redirect is to a different host than the Django application itself, it replaces it with `/`....

> Could it be possible to merge in Django's [ALLOWED_HOSTS](https://docs.djangoproject.com/en/5.1/ref/settings/#allowed-hosts) setting so we can redirect them back to the original client that may be at a different host? Instead of...

Originally I had Remix frontend handle SSO and then forward the ADFS JWT with every API call using the provided `AdfsAccessTokenAuthentication` authentication backend. However, I noticed it was making lots...

`docker-compose.yaml` `$ docker network create ark` ```yaml services: # ARK: The Island ark-the-island: image: docker.io/mschnitzer/asa-linux-server:latest container_name: ark-the-island entrypoint: /usr/bin/start_server restart: unless-stopped user: gameserver tty: true ports: - 7777:7777/udp # Game...

Hi @GaMeNu 👋 It's been a couple weeks now. I assume you have been using your build of the mod for a while. Has this change fixed your issue? Thanks,

This is very strange, you have me stumped. 😆

Hi @bellini666 👋 It appears to just affect strawberry-django fields. I was not able to reproduce when using pure strawberry fields. There's a reproduction repository linked at the bottom of...

> I've the same issue. A workaround seems to set create, update, delete... to something: > > ```python > @strawberry.type > class Mutation: > > @strawberry.field(description="Mutate fruits") > def fruits(self)...

Update; this works for nested queries. ```py @strawberry.field(description="Query fruits") def fruits(self) -> FruitQuery: return FruitQuery(all=Fruit.__strawberry_django_definition__.model.objects) ``` _I am unsure of the implications of providing a queryset here._ And this for...