Skip to main content

No project description provided

Project description

Implentation of ACL for ckan.

When extension enabled, new tab Permissions added to admin interface. Here you can manage user permissions on per-user level.

In order to add new managed permission, one should implement ckanext.acl.interfaces.IACL and define update_permission_list method in plugin and change perm - first positional argument passed into this method. perms is ckanext.acl.access_permissions.AccessPermissions object so you can check available actions there.

Example of code that you can use in your plugin(will allow any user to create new organization)::

from ckanext.acl.interfaces import IACL

plugins.implements(IACL)

# IACL

def update_permission_list(self, perms):

perms.create_permission(‘organization_create’)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ckanext-acl-0.1.2.tar.gz (9.8 kB view hashes)

Uploaded Source

Built Distribution

ckanext_acl-0.1.2-py3-none-any.whl (28.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page