module ActiveAdmin::Resource::Controllers

def route_collection_path

collection of this resource
Returns a symbol for the route to use to get to the
def route_collection_path
  route = [
    route_prefix, 
    controller.resources_configuration[:self][:route_collection_name], 
    'path'
  ]
  route.compact.join('_').to_sym
end