forked from heartcombo/devise
-
Notifications
You must be signed in to change notification settings - Fork 0
How To: Add a default role to a User
kuraga edited this page Sep 7, 2012
·
4 revisions
First create the Role model and link it to the User Model
$ rails g model Role name:string
$ rails g migration addRoleIdToUser role_id:integer
$ rake db:migrate
Then in your Models
class User < ActiveRecord::Base
belongs_to :role
end
class Role < ActiveRecord::Base
has_many :users
end
['registered', 'banned', 'moderator', 'admin'].each do |role|
Role.find_or_create_by_name role
end
Then
$ rake db:seed
class User < ActiveRecord::Base
belongs_to :role
before_create :set_default_role
private
def set_default_role
self.role ||= Role.find_by_name('registered')
end
end