T. Franzel
T. Franzel
I hear you. People still do run those ancient versions despite being EOL though. As long as our tests pass for those versions, and they do not block a future...
Interesting! So it looks like `getattr(view, item)` fails even though it should by definition succeed. `dir(view)` gets all the attribute names right there and thus they should alle be `getattr`-able,...
Hi @kytta, although I am still not a fan of this, I admit this should be allowed with 3.1. Have you run the tests on this? I have 5 failing...
sounds good @kytta! One of the failing tests I observed was a added DELETE body where there was none explicitly given, e.g. a ModelViewSet with a class-wide `serializer_class` should not...
Hi, can you state an example to make this easier to reproduce? How are you using `LocalePrefixPattern` and how does the full path look like? Seems like a bug, so...
I think you can use the `extend_schema(auth=[{"signatureAuth": []}]` parameter, however that is only a declaration. You also need to add the custom OpenAPI definition of `signatureAuth` in the settings: https://github.com/tfranzel/drf-spectacular/blob/659b1f0d00bd0bbc711cbad094226097ab3260e0/drf_spectacular/settings.py#L96
1. it is discouraged for the regular use-case of auth on normal views, because we have a robust system and this just bypasses everything. It is not supposed to be...
Hi, in theory this should work, but I wouldn't recommend it, because View replacement is only done once per view and you might undo other extensions with this. You state...
Hi @astro-stan, > However, this is not correct. The view's class is available under self.target You correctly noticed that the documentation is not worded well. However, the code is as...
@astro-stan sorry for the long wait and thank you for your patience! This is an excellent change! Thank you! I just took the liberty to rename the arg and remove...