Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to include a 'Track item' button to a list of products on a user profile page, but this error message keeps appearing:

LoadError in TrackedProductsController#create

Expected /Users/anon/rails_projects/webproject/app/controllers/tracked_products_controller.rb to define TrackedProductsController

I've tried a number of things, but nothing seems to be working. Can somebody help me out and shed some light on what I should be doing?

Here's the tracked_products_controller.

class TrackedProductController < ApplicationController
before_filter :signed_in_user
respond_to :html, :json, :xml, :js

def create
  @user = current_user
  @product = Product.find(params[:tracked_products][:tracked_id])
  current_user.track!(@product)
  redirect_to @user

  respond_with @tracked_product
end

def destroy
  @user = current_user
  @product = TrackedProduct.find(params[:id]).tracked
  current_user.untrack!(@product)
  redirect_to @user

  respond_with @tracked_product
end
end

Model: tracked_products.rb

class TrackedProduct < ActiveRecord::Base
attr_accessible :last_order, :next_order, :tracked_id, :tracker_id

belongs_to :tracker, class_name: "User"
belongs_to :tracked, class_name: "Product"

validates :tracked_id, presence: true
validates :tracker_id, presence: true
end
share|improve this question
1  
Nevermind. Stupidity check. I forgot to add an s to TrackedProductController. – user1743958 Nov 7 '12 at 1:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.