Hi,
I am using the acts_as_authenticated plugin. When installed it creates
a user model and a account controller which handles signup, login and
logout which is very nice.
The problem I’m having is that I want the user to be able to login
from the main page of my application which is handled by a different
controller, lets call it the main controller.
Is there an elegant way of using the account controller login logic
instead without moving it to my main controller. I really would like
to keep them separate.
Thanks in advance.