Ignore frequency field on the frontend for the time being

This commit is contained in:
amercader 2012-11-01 14:12:01 +00:00
parent d7f8c9165c
commit d598c0707b
1 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,9 @@ class ViewController(BaseController):
def _check_data_dict(self, data_dict):
'''Check if the return data is correct'''
surplus_keys_schema = ['id','publisher_id','user_id','config','save']
# TODO: remove frequency once it is added to the frontend!
surplus_keys_schema = ['id','publisher_id','user_id','config','save','frequency']
schema_keys = harvest_source_form_schema().keys()
keys_in_schema = set(schema_keys) - set(surplus_keys_schema)