授权特定控制器下的所有操作(例如:adminController)
我想授权 adminController 下的所有操作。我怎样才能做到这一点。我有一个包含角色和用户的数据库。 1. 管理员 2. 我希望会员
只有管理员才能访问 adminController 中的所有操作。
i want to authorize all action under adminController. how can i do that. i have a database with Roles and User.
1. Administrator
2. Member
i want only Administrators can access to all action in adminController.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我遵循您的要求,我这样做是为了限制对 SiteAdminController 的访问:
这将对我的
SiteAdminController
操作的访问限制为该角色的用户。If I follow what you are asking, I've done this to restrict access to the SiteAdminController:
That restricts access to the actions of my
SiteAdminController
to users in that role.