class ActiveAdmin::ResourceController

def inherited(base)

need to install our resource_class method each time we're inherited from.
add in the Base.resource_class class method. To override it, we
Inherited Resources uses the inherited(base) hook method to
def inherited(base)
  super(base)
  base.override_resource_class_methods!
end