This is how I can see user's role: current_admin_user.role
I'm using CanCan
How can I
- Hide the Dashboard button
- Restrict access to the Dashboard in case the user finds out it's url
- I have tried this but doesn't work.
dashboard_controller.rb
if current_admin_user.role == 'customer'
redirect_to shipments_path
end
I tried this in admin/dashboards.rb
controller do
def scoped_collection
if current_admin_user.role == 'customer'
redirect_to shipments_path
end
end
end
but produces error undefined method 'controller' for ActiveAdmin::Dashboards:Module (NoMethodError)