~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/dispatch/__init__.py

  • Committer: Matt Giuca
  • Date: 2010-02-12 04:00:39 UTC
  • Revision ID: matt.giuca@gmail.com-20100212040039-vw9yf8p4s98g6nu9
Added an argument 'config' to every single get_permissions method throughout the program. All calls to get_permissions pass a config. This is to allow per-site policy configurations on permissions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    def traversed_to_object(self, obj):
66
66
        """Check that the user has any permission at all over the object."""
67
67
        if (hasattr(obj, 'get_permissions') and
68
 
            len(obj.get_permissions(self.root.user)) == 0):
 
68
            len(obj.get_permissions(self.root.user, config)) == 0):
69
69
            # Indicate the forbidden object if this is an admin.
70
70
            if self.root.user and self.root.user.admin:
71
71
                raise Unauthorized('Unauthorized: %s' % obj)