diff options
author | Philip Arndt <parndt@gmail.com> | 2010-08-09 20:19:10 +1200 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-08-09 20:19:10 +1200 |
commit | e3d873855a65629af599e2611590575b6720c60c (patch) | |
tree | 188e626433ff41f6f5b1beb4e8862532b65aeb29 | |
parent | a5fe9225fac33f15e972599132c7f569cc5cf397 (diff) | |
download | refinerycms-blog-e3d873855a65629af599e2611590575b6720c60c.tar.gz refinerycms-blog-e3d873855a65629af599e2611590575b6720c60c.tar.bz2 refinerycms-blog-e3d873855a65629af599e2611590575b6720c60c.zip |
appropriately name the class.
-rw-r--r-- | app/models/blog_comment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/blog_comment.rb b/app/models/blog_comment.rb index 4398475..f943ce1 100644 --- a/app/models/blog_comment.rb +++ b/app/models/blog_comment.rb @@ -1,4 +1,4 @@ -class BlogPost < ActiveRecord::Base +class BlogComment < ActiveRecord::Base acts_as_indexed :fields => [:name, :email, :body] |