Commit 11f40ec2 by Rocky Duan

seed & fix update endorse bug

parent ae39b153
...@@ -31,11 +31,11 @@ namespace :db do ...@@ -31,11 +31,11 @@ namespace :db do
def generate_comments(commentable_type, commentable_id, level_limit) def generate_comments(commentable_type, commentable_id, level_limit)
comment_thread = CommentThread.create! :commentable_type => commentable_type, :commentable_id => commentable_id comment_thread = CommentThread.create! :commentable_type => commentable_type, :commentable_id => commentable_id
5.times do 5.times do
comment_thread.root_comments.create :body => "top comment", :title => "top #{rand(10)}", :user_id => 1, :course_id => 1, :comment_thread_id => comment_thread.id comment_thread.root_comments.create :body => "top comment", :title => "top #{rand(10)}", :user_id => 1, :course_id => 1, :comment_thread_id => comment_thread.id, :endorsed => [true, false].sample
end end
10.times do 10.times do
comment = Comment.all.reject{|c| c.is_root? or c.depth >= level_limit or c.comment_thread_id != comment_thread.id}.sample comment = Comment.all.reject{|c| c.is_root? or c.depth >= level_limit or c.comment_thread_id != comment_thread.id}.sample
comment.children.create :body => "comment body", :title => "comment title #{rand(50)}", :user_id => 1, :course_id => 1, :comment_thread_id => comment_thread.id comment.children.create :body => "comment body", :title => "comment title #{rand(50)}", :user_id => 1, :course_id => 1, :comment_thread_id => comment_thread.id, :endorsed => [true, false].sample
end end
end end
......
...@@ -102,7 +102,7 @@ put '/api/v1/comments/:comment_id' do |comment_id| ...@@ -102,7 +102,7 @@ put '/api/v1/comments/:comment_id' do |comment_id|
if comment.nil? or comment.is_root? if comment.nil? or comment.is_root?
error 400, {:error => "invalid comment id"}.to_json error 400, {:error => "invalid comment id"}.to_json
else else
comment_params = params.select {|key, value| %w{body title}.include? key} comment_params = params.select {|key, value| %w{body title endorsed}.include? key}
if comment.update_attributes(comment_params) if comment.update_attributes(comment_params)
comment.to_json comment.to_json
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment