Files
danbooru/app/controllers/comment_votes_controller.rb
albert fc0a076aca * Missing files
* Work on post exploration code by traversing dates
2010-10-27 20:16:43 -04:00

12 lines
231 B
Ruby

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