Bob, I know that this response is a little late, but I just got bit by the same bug. I have tracked down the bug, fixed it and it has been merged into Hobo/master.
Take a look at https://github.com/Hobo/hobo/issues/40 if you are interested in the (simple) fix. Regards, Henry On Sunday, 11 November 2012 16:03:33 UTC-5, Bob Sleys wrote: > > I understand what the router error in the subject is trying to tell me but > I don't see what I've done wrong > > In my Ticket model I have > > belongs_to :technician, :class_name => 'User', :inverse_of => > :tech_tickets, :conditions => ['employee = ?', true] > belongs_to :submitted_by, :class_name => "User", :creator => true, > :inverse_of => :tickets > > In my User model I have the following > > has_many :tech_tickets, :class_name => "Ticket", :inverse_of => > :technician > has_many :tickets, :inverse_of => :submitted_by > > However when I add the following in my Ticket controller I get the error > in the subject line > > auto_actions_for :technician, :index > > def index_for_technician > params[:sort] ||= "problem" > params[:search] ||= "" > hobo_index_for :technician, :scope => [[:search, params[:search], > [problem]], [:order, parse_sort_param(:problem).join(' ')]] > end > > -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/hobousers. For more options, visit https://groups.google.com/groups/opt_out.
