Puppet Class: ckan::ext::hierarchy
- Defined in:
- manifests/ext/hierarchy.pp
Summary
Installs the "hierarchy" extension from data.gov.uk.Overview
This extension allows organizations to have parents, and displays them in a tree.
    Note:
    
  
Untested so probably needs some development effort.
| 10 11 12 13 14 15 16 | # File 'manifests/ext/hierarchy.pp', line 10
class ckan::ext::hierarchy {
  ckan::ext { 'hierarchy':
    source   => 'http://github.com/datagovuk/ckanext-hierarchy',
    revision => 'master',
    plugin   => ['hierarchy_form', 'hierarchy_display'],
  }
} |