- Notifications
You must be signed in to change notification settings - Fork302
Error Pointers for APIViews#1044
-
Hello! I have an API view which inherits from
Because pointers are now set only if the view inherits from
It doesn't make sense for my API view to inherit from |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 1 comment 2 replies
-
Thanks for your feedback. Before the fix of#986 the error pointer base was hard coded and was only correct in some cases and in other it was not. And the only way which seemed plausible is to make calculation based on the This said we might change this check but for this it is important to know the different APIView use cases. So could you paste your |
BetaWas this translation helpful?Give feedback.
All reactions
-
The API view (code example below) does use a serializer. Perhaps an alternate solution could involve manually declaring a serializer attribute?
|
BetaWas this translation helpful?Give feedback.
All reactions
-
Thanks for the example. As you do not set I think in such a case where the |
BetaWas this translation helpful?Give feedback.