fixes #149: can't create new threads

This commit is contained in:
albert
2011-10-22 02:12:10 -04:00
parent 87e56db576
commit b5cf9bf41f

View File

@@ -1,5 +1,6 @@
class ForumPost < ActiveRecord::Base
attr_accessible :body, :topic_id
attr_accessible :body, :topic_id, :as => [:admin, :moderator, :janitor]
belongs_to :creator, :class_name => "User"
belongs_to :topic, :class_name => "ForumTopic"
before_validation :initialize_creator, :on => :create