Skip to content

Commit

Permalink
Merge pull request #43 from keitaroinc/featured-view-check-prod
Browse files Browse the repository at this point in the history
Featured-view-check-prod
  • Loading branch information
blagojabozinovski authored Aug 5, 2024
2 parents 40354ae + 6dcc582 commit ad806f9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ckanext/iaea/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ def suggested_filter_fields_serializer(datapackage, view_dict):

def featured_view_url(pkg):
featured_view = model.ResourceView.get(pkg['featured_view'])
return toolkit.h.url_for(qualified=True, controller='dataset_resource',
action='view', id=pkg['name'],
resource_id=featured_view.resource_id,
view_id=featured_view.id)
if featured_view:
return toolkit.h.url_for(qualified=True, controller='dataset_resource',
action='view', id=pkg['name'],
resource_id=featured_view.resource_id,
view_id=featured_view.id)
else:
return None


class IaeaPlugin(plugins.SingletonPlugin, toolkit.DefaultDatasetForm,
Expand Down

0 comments on commit ad806f9

Please sign in to comment.