Is the best way to use ACLs in CakePHP to add every user (as they register) as an ARO?
Is there another way of doing it? That seems like if you got a big enough user-base it might slow it down a bit…
Is the best way to use ACLs in CakePHP to add every user (as
Share
Using ACL will slow down your system a bit. And as far as I know, adding them all as AROs is the best way to go about it.
If you’re system doesn’t need fine grained control of each and every method, you might consider just using Auth and authorizing your users on a method level by using
isAuthorized(). This is much faster than using ACL but without the fine grained control that ACL offers.