Prevent controller *public* method from being an action?

Hi all

I need to have methods in my controller that need to be called from
external objects, so they must be public.
But they must not be handled as an action (as Rails does by default).
How can I prevent these public methods from being handled as actions?

Thanks
Josh

hide_action class method

ie

hide_action :edit

Keynan P. wrote:

hide_action class method

ie

hide_action :edit

Thank you. :slight_smile: