I\'m new to rails and can\'t figure out this issue...
I have a controller
Admin::Blog::EntriesController
defined in app/controllers/adm
Try:
@blog_entries = ::Blog::Entry.find(:all)
It's currently looking for the wrong class. Using :: before Blog will force it to look from the top level.
::
Blog