Displaying 1 result from an estimated 1 matches for "addmoderatorrole".
2010 May 08
2
uninitialized constant - Please Help Me...
...n the book: APRESS - Practical Rails Social
Networking Sites and have hit a minor issue.
Part of the Forum requirements is to add a moderator role to allow
only certain individuals the ability to manage topics etc.
That code is in the moderator_role.rb migration file which looks like
this:
class AddModeratorRole < ActiveRecord::Migration
def self.up
moderator_role = Role.create(:name => ''Moderator'')
admin_user = User.find_by_username(''Admin'')
admin_user.roles << moderator_role
end
def self.down
moderator_role = Role.find_by_name('...