Shi Pengtao
Shi Pengtao
this pull request fix case when multiple actions having the same url_path, while not using `action.mapping` ```python @action(detail=False, methods=['get'], url_path='test') def action_get(self, request): pass @action(detail=False, methods=['post'], url_path='test') def action_post(self, request):...
## Description It will return 404 if page query parameter is empty string, like `/?page=`. Some of api testing tools will assign query parameter with empty string (like `Apifox`, as...
解决方案来自:https://github.com/axnsan12/drf-yasg/issues/95#issuecomment-378541056
I used to use VS Code's shortcut key(Command-Shift-O) to find functions in current file, but it seems that this is also `chatgpt-desktop`'s shortcut key. Is there a way that I...