Method: Authz::RolablesController#show
- Defined in:
- app/controllers/authz/rolables_controller.rb
#show ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 14 15 16 |
# File 'app/controllers/authz/rolables_controller.rb', line 11 def show @rolable = rolable.find(params[:id]) @associated_roles = @rolable.roles.page(1) @associated_business_processes = @rolable.business_processes.page(params[:business_processes_page]) @associated_controller_actions = @rolable.controller_actions.page(params[:controller_actions_page]) end |