Wednesday, October 27, 2010

Re: Acl and bindNode

I wish that were the case, but the guide then gives an example of the aros table, which only includes groups: http://book.cakephp.org/view/1547/Acts-As-a-Requester


On 27 Oct 2010, at 13:41, cricket wrote:

On Tue, Oct 26, 2010 at 4:40 PM, Jeremy Burns
<jeremyburns@classoutfit.com> wrote:
According to the online tutorial:

"
In case we want simplified per-group only permissions, we need to
implement bindNode() in User model.
Code View

function bindNode($user) {
   return array('Group' => array('id' => $user['User']['group_id']));
}

  function bindNode($user) {
     return array('Group' => array('id' => $user['User']
['group_id']));
  }

This method will tell ACL to skip checking User Aro's and to check
only Group Aro's.
"

I've done this but I'm still getting users added to the aros table.
What am I missing?

I believe that's normal. Users will still be present in aros but the
point is that ACL won't /check/ User, but Group.

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: