2010-06-20 2 views

답변

15

이 작동합니다 나는

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

같은 것을 해봤지만이에 :(어떤 아이디어가 작동하지 않습니다 :

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

declarative_authorization는 [:admin, :users]으로 네임 스페이스와 리소스 이름을 접두사 수 사용자가 admin_controllerusers_controller에 대한 권한을 가지고 있음을 의미합니다.

+2

감사합니다. 예^^ – Douglas