declarative_authorization and namespaces

人盡茶涼 提交于 2019-12-23 07:57:17

问题


Do you know - can declarative_authorization control access to namespace'd resources or not? I've tried something like

has_permission_on [:admin, :users], :to => [:index, :show, :new, :create, :edit, :update, :destroy, :search]

but it's not working :( any ideas on this?


回答1:


This will work:

has_permission_on :admin_users, :to => [:index, :show, :new, :create, :edit, :update, :destroy, :search]

declarative_authorization prefixes the resource name with the namespace as [:admin, :users] could also mean that the user has permission on the admin_controller and the users_controller.



来源:https://stackoverflow.com/questions/3079035/declarative-authorization-and-namespaces

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!