I have my file structure set up appropriately ( I think ! ) , and claims nothing responds to show.
My file structure :
views/admin/admin_wysi/index.html.haml
My controller ( controllers/admin/admin_wysis_controller.rb )
class Admin::AdminWysisController < Admin::ApplicationController
def index
end
end
My routes.rb
map.namespace :admin do |admin|
admin.resource :admin_wysi
end
And my error when I try to access www.website.com/admin/admin_wysi/ :
Unknown action
No action responded to show. Actions: index
What am I doing wrong here?