I\'m having an error with my routes/resources and controllers.
I have the following in the routes.rb:
# routes.rb resources :users do resource :s
In your routes.rb you need to specify the controller like this:
resources :users do resource :schedules, controller: 'users/schedules' end