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