[Rails] Re: STI Devise, remove sign up for admin

2012-09-18 Thread Jim Smith
A little late to the party, but I just ran into the same issue. I have my User model set up, and my AdminUser model is inheriting from the User model. Technically, you cannot 'remove' the 'registerable' module from your Admin model without removing it from the User model. We can still set up

[Rails] Re: STI Devise, remove sign up for admin

2011-08-12 Thread jdkealy
bump On Aug 10, 11:42 am, jdkealy jdke...@gmail.com wrote: Hi, If I'm using STI with Devise, I have a Admin model inheriting the base Devise User model. I would like to remove 'registerable' from the Admin model but it inherits registerable from the user model. How would i disable