Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using Devise, I have an admin model and a user model. I want to specify different configuration options for each model. At the moment, all of my Devise configuration is in /config/initializors/devise.rb. How can I do this?

share|improve this question

1 Answer

You'll need two things for each: route helpers (which will end up in routes.rb) and devise field helpers (which will end up in your two models).

When you run rails generate devise user and rails generate devise admin, you should get setup with what you need for both to get started.

Oh, and chase it down with rake db:migrate, as depending on your needs, various columns will get added to both tables.

(If you're asking for setting different global configuration options for different models, I'm not sure how to go about doing that, actually, if it's even possible.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.