Skip to content

Commit

Permalink
include_data not needed on this function after all
Browse files Browse the repository at this point in the history
  • Loading branch information
David Read committed Mar 16, 2018
1 parent 8c34180 commit ca9e597
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ckan/logic/schema.py
Expand Up @@ -607,11 +607,9 @@ def default_dashboard_activity_list_schema(unicode_safe):


@validator_args
def default_activity_list_schema(
ignore_missing, not_missing, unicode_safe, boolean_validator):
def default_activity_list_schema(not_missing, unicode_safe):
schema = default_pagination_schema()
schema['id'] = [not_missing, unicode_safe]
schema['include_data'] = [ignore_missing, boolean_validator]
return schema


Expand Down

0 comments on commit ca9e597

Please sign in to comment.