Displaying 1 result from an estimated 1 matches for "authlevel".
Did you mean:
auth_level
2006 Apr 14
1
SaltedHashLoginGenerator Integration Woes
I''m trying to modify the SaltedHashLoginGenerator to where it separates
the users table into two tables: a users table which contains login
info: token, salt, etc) and userprofiles table (which contains
firstname, lastname, authlevel, etc)
I''m trying to use the existent helper for user under
app/helpers/user_helper.rb and copied to
app/helpers/userprofiles_helper.rb and prepended prof_ to the names of
the functions to differentiate them.
On the user_controller.rb I added
helper :userprofiles
and modified the a...