What is the difference between using AuthComponent::allowedActions and AuthComponent::allow? When I Google, I see the majority of examples and documents using or talking about allow(), but only a few using allowedActions. But they both seem similar in usage.
相关问题
- java client program to send digest authentication
- PHP persistent login - Do i reissue a cookie after
- How to restrict VOB read access in ClearCase (Wind
- How to handle “App is temporarily blocked from log
- passport.authenticate() using a Promise instead of
相关文章
- User.Identity.IsAuthenticated vs WebSecurity.IsAut
- SwiftUI - Vertical Centering Content inside Scroll
- Override UserManager in django
- Your application has authenticated using end user
- How to force refresh of images & css files in Cake
- Cookie vs. Session based flash message
- Access Token for Dockerhub
- Django: Creating a superuser with a custom User mo
allowedActions is a property that contains a list of allowed actions.
allow() is a method that adds actions to the allowedActions property.
When you call the allow() method, it will merge the actions you specify with the actions already kept in allowedActions.
You can bypass the allow() method and assign an array of allowed actions to the allowedActions property directly, but I would only do that if I absolutely had to override any actions previously added (for example, by a parent class) to this property. The official documentation makes no reference to the allowedActions property.
In 2.x use: