On Mar 1, 10:35 am, "Todd A. Jacobs" <[email protected]>
wrote:
> Short of redefining the show method in the controller, how can I allow
> guests to index without show?

I tried this in the controller, but it doesn't work:

class JobsController < ApplicationController

  hobo_model_controller

  if signed_up?
    auto_actions :all
  else
    auto_actions :all, :except => :show
  end

It returns "undefined method `signed_up?' for JobsController:Class"
even though the documentation says that these methods are available to
both models and controllers. Do I need to call the method in some
other way?

-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/hobousers?hl=en.

Reply via email to