helper?

Hi all...

    Can a helper method be used to reduce the repeated codes in the controller?

    Please help with an example.

Thanks Suneeta

Hi all...

   Can a helper method be used to reduce the repeated codes in the controller?

In the context of rails, helper tends to mean "view helper", so usualy
not. But there's no reason you can't stick common controller code in a
module. If you have too much in your controllers it might be a sign
that some of that code should be in your models.

Fred