Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eve_docs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def schema(resource, field=None):
# schema prefixed by the field name and a * to denote the wildcard
if 'keyschema' in attrs:
attrs['schema'] = attrs.pop('keyschema')
for subfield in schema(attrs):
for subfield in schema(attrs, field):
subfield['name'] = field + '.*.' + subfield['name']
ret.append(subfield)
return ret
Expand Down