small fix to API documentation: schemas

adding missing parameters to get_manual_fields()
This commit is contained in:
veli-matti.helke 2018-01-31 14:30:13 +02:00
parent df77f7bb9d
commit 86c0cfeeb1

View File

@ -631,7 +631,7 @@ def get_manual_fields(self, path, method):
if method=='POST':
extra_fields = # ... list of extra fields for POST ...
manual_fields = super().get_manual_fields()
manual_fields = super().get_manual_fields(path, method)
return manual_fields + extra_fields
```