module ActiveAdmin::Resource::Controllers
Public Instance Methods
Source
# File lib/active_admin/resource/controllers.rb, line 14 def controller @controller ||= controller_name.constantize end
Returns the controller for this config
Source
# File lib/active_admin/resource/controllers.rb, line 9 def controller_name [namespace.module_name, resource_name.plural.camelize + "Controller"].compact.join("::") end
Returns a properly formatted controller name for this config within its namespace