I have Redmine 1.2.1 with the CAS plugin.
The login function is not being properly aliased. If I go to /login, it shows the regular login screen but if I go to /account/login_with_cas, it logs in properly.
I ran the following code and it returned false.
a = AccountController.new
a.method(:login) == a.method(:login_with_cas)
I have Redmine 1.2.1 with the CAS plugin.
The login function is not being properly aliased. If I go to
/login, it shows the regular login screen but if I go to/account/login_with_cas, it logs in properly.I ran the following code and it returned
false.a = AccountController.new
a.method(:login) == a.method(:login_with_cas)