Merge branch 'release-v2.0' of https://github.com/okfn/ckanext-harvest into release-v2.0

This commit is contained in:
kindly 2013-03-25 11:58:31 +00:00
commit b5a697ec87
1 changed files with 5 additions and 3 deletions

View File

@ -28,9 +28,11 @@ def package_list_for_source(source_id):
context = {'model': model, 'session': model.Session}
owner_org = p.toolkit.c.harvest_source.get('owner_org', '')
if owner_org:
user_member_of_orgs = [org['id'] for org
in h.organizations_available('read')]
if (p.toolkit.c.harvest_source and p.toolkit.c.harvest_source['owner_org'] in user_member_of_orgs):
if (p.toolkit.c.harvest_source and owner_org in user_member_of_orgs):
context['ignore_capacity_check'] = True
query = logic.get_action('package_search')(context, search_dict)