We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 406226e commit 4bda249Copy full SHA for 4bda249
rest_framework_json_api/schemas/openapi.py
@@ -337,7 +337,8 @@ def get_paths(self, request=None):
337
view.action = current_action
338
339
if 'responses' in operation and '200' in operation['responses']:
340
- operation['responses']['200']['description'] = operation['operationId'] # TODO:!
+ # TODO: Still a TODO in DRF 3.11 as well
341
+ operation['responses']['200']['description'] = operation['operationId']
342
# Normalise path for any provided mount url.
343
if path.startswith('/'):
344
path = path[1:]
0 commit comments