On Jul 9, 2013, at 6:14 AM, mack gille <[email protected]> wrote:
> Robert Walker wrote in post #1114535: >> ram kris wrote in post #1114502: >>> how to use single login page for users in four models >> >> You have not given enough detail in your question to know what you're >> asking. >> >> Are you saying that you have four different types of users? If so then >> why do you have four models instead of doing role based authorization >> having only one user model? >> >> If you really do have four different types of user then you might want >> to consider Single-Table-Inheritance (STI). I seriously doubt you need >> to go to this extreme though. >> >> I can't give you a definitive answer from such an abstract question. >> There are many ways to solve a problem, but you haven't even described >> the problem you're trying to solve. > > > > @Robert Walker plz clarify me > > i have face the same problem.i have two models employee(having 6 input > fields),client(having 12 input fields),i need to authenticate them using > devise.what i have to do single sign in form for both if it is solution > let me know how is this,else by using two devises or any solution let me > know > > thankyou @Robert Walker > This is probably me just being crazy, but why have so many devise tables? You may indeed have different user types, but if they all need to log in, then why not have a single User table that handles the authentication that is common to all types? Do you really need different methods of logging your various types of users in? You can either then have different models for the 4 types, but they can all either inherit from User (which is the single table inheritance thing) -or- they can be separate models with their own relationships and such to the User table you use for authentication. If you really want to think about it, you don't need to make this part of you application at all, and use Devise as a completely separate Rails Engine with it's own models. All your application needs to deal with is authenticated users, and none of the business of actually authenticating them. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/44E7ED51-AAB6-43D3-BDF9-CBEC0F02E3B1%40gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

