Files
danbooru/app/controllers/comment_votes_controller.rb
albert c6304c6e08 views
2010-11-19 16:24:17 -05:00

9 lines
208 B
Ruby

class CommentVotesController < ApplicationController
def create
@comment = Comment.find(params[:comment_id])
@comment.vote!(params[:score])
rescue CommentVote::Error => x
@error = x
end
end