forked from edavis10/redmine
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comments can now be added on news. git-svn-id: http://redmine.rubyforge.org/svn/trunk@81 e93f8b46-1217-0410-a6f0-8f06a7374b81
- Loading branch information
Showing
17 changed files
with
153 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class Comment < ActiveRecord::Base | ||
belongs_to :commented, :polymorphic => true, :counter_cache => true | ||
belongs_to :author, :class_name => 'User', :foreign_key => 'author_id' | ||
|
||
validates_presence_of :commented, :author, :comment | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class CreateComments < ActiveRecord::Migration | ||
def self.up | ||
create_table :comments do |t| | ||
t.column :commented_type, :string, :limit => 30, :default => "", :null => false | ||
t.column :commented_id, :integer, :default => 0, :null => false | ||
t.column :author_id, :integer, :default => 0, :null => false | ||
t.column :comment, :text, :default => "", :null => false | ||
t.column :created_on, :datetime, :null => false | ||
t.column :updated_on, :datetime, :null => false | ||
end | ||
end | ||
|
||
def self.down | ||
drop_table :comments | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class AddNewsCommentsCount < ActiveRecord::Migration | ||
def self.up | ||
add_column :news, :comments_count, :integer, :default => 0, :null => false | ||
end | ||
|
||
def self.down | ||
remove_column :news, :comments_count | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
class AddCommentsPermissions < ActiveRecord::Migration | ||
def self.up | ||
Permission.create :controller => "news", :action => "add_comment", :description => "label_comment_add", :sort => 1130, :is_public => false, :mail_option => 0, :mail_enabled => 0 | ||
Permission.create :controller => "news", :action => "destroy_comment", :description => "label_comment_delete", :sort => 1133, :is_public => false, :mail_option => 0, :mail_enabled => 0 | ||
end | ||
|
||
def self.down | ||
Permission.find(:first, :conditions => ["controller=? and action=?", 'news', 'add_comment']).destroy | ||
Permission.find(:first, :conditions => ["controller=? and action=?", 'news', 'destroy_comment']).destroy | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html | ||
comments_001: | ||
commented_type: News | ||
commented_id: 1 | ||
id: 1 | ||
author_id: 1 | ||
comment: my first comment | ||
created_on: 2006-12-10 18:10:10 +01:00 | ||
updated_on: 2006-12-10 18:10:10 +01:00 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require File.dirname(__FILE__) + '/../test_helper' | ||
|
||
class CommentTest < Test::Unit::TestCase | ||
fixtures :users, :news, :comments | ||
|
||
def setup | ||
@jsmith = User.find(2) | ||
@news = News.find(1) | ||
end | ||
|
||
def test_create | ||
comment = Comment.new(:commented => @news, :author => @jsmith, :comment => "my comment") | ||
assert comment.save | ||
@news.reload | ||
assert_equal 2, @news.comments_count | ||
end | ||
|
||
def test_validate | ||
comment = Comment.new(:commented => @news) | ||
assert !comment.save | ||
assert_equal 2, comment.errors.length | ||
end | ||
|
||
def test_destroy | ||
comment = Comment.find(1) | ||
assert comment.destroy | ||
@news.reload | ||
assert_equal 0, @news.comments_count | ||
end | ||
end |