I'm working on a new project and for some reason decided to create two separate user models/controllers/sessions using authologic.
The users have completely different roles on the site but the models are basically the same. The only difference is the views.
I'm now wondering if I should have just created one model and added a "role" field. Then after they log in, figure out which role they have, and then dump them to a new controller based on their role.
So I guess my question is, is there any reason to have two user models? Are there any guides about user roles with authlogic?
Thanks!