How to use with namespaced models.
Created by: gpinkham
I have a user model that lives in Platform::User.. I ran the generator with administrate::dashboard Platform::User and this created a user_dashboard.rb and a users_controller.rb.. when I try to go to the users page in admin it fails saying
uninitialized constant Admin::Platform
it points to this line in the controller:
class Admin::Platform::UsersController < Admin::ApplicationController
I tried to remove the Platform:: from the controller and dashboard file but that just produced a similar error but this time saying User was an uninitiatized constant.
thanks! Gary