ruby-on-railsdevisesti

Rails 4 Devise Multiple User Models STI


I am using Devise and Rails 4. I want to add multiple User Models(admin, usertype1, usertype2) such that they inherit from the main User Model. I have searched many posts and come to the conclusion that I may use CanCan, which I do not want, or I may use Single Table Inheritance.

The way I see it is to add a type string-column to my main User model I created with Devise. I will also need to extend each sub-class from the parent as in:

class Admin < User
end

class Usertype1 < User
end

class Usertype2 < User
end

My question is: what do I do next? How exactly do I know how to access the type column? Do I also need to override the Devise Controller for the current_user helper method such that I can have current_admin for example?


Solution

  • You can also use the easy_roles gem. It is available on github. This gem provides a bitmask solution for your different user roles. You just must have one model, e.g User, this model gets an attribute "role". Just checkout the docs on github. Devise + easy_roles + CanCan is a very good setup, it is very convenient in my opinion. I use this quite often.

    Link to github: https://github.com/platform45/easy_roles