T. Franzel
T. Franzel
Hey @TheJulianJES, I have no idea how the signature matching works, but your statement does not really match my experience here. I tried those quirks from the gist above and...
there are the changes I successfully been using for a year. imho should be merged.
Hi, this looks like a design decision on SwaggerUI to me. We offer both auth methods on the endpoint and SwaggerUI chooses to only use one (prob the first populated...
Hi @HansAarneLiblik, wouldn't an update endpoint where all fields are required be an `PUT` operation instead of `PATCH`? The whole point of `PATCH` is to allow partial updates. For whole...
Okay so there are multiple things going on. The presented code behaves as expected. The rational below might shed some light on the reasons why. @stefanpl this particular example behaves...
Multiple things: * Just declaring `basicAuth` is not enough. You also need to specify the details of this manual auth method in the security section. We have a dedicated setting...
Hi @kritohanzo I agree with your statement in general, but this `if` case only deals with `serializers.PrimaryKeyRelatedField` and `serializers.SlugRelatedField` and those only properly work on `ModelSerializer`, thus forcing you to...
Q1: TemplateViews are not DRF views, so no. Q2: So this is a bit tricky. We have the tooling for `TypedDict`, but only as part of type hint for a...
Hi, think I understood your post but I don't really see any problems yet. * Your API has `GET /dogs/id` which return a `DogSerializer`. * In case of the webhook,...
Thank you @dontic for the thorough explanation. I have not looked at this in a while so I had to refresh my memory. Just from my memory I would have...