Files
danbooru/app/controllers/comment_votes_controller.rb
2013-06-21 13:25:27 -07:00

11 lines
262 B
Ruby

class CommentVotesController < ApplicationController
respond_to :js, :json
before_filter :member_only
def create
@comment = Comment.find(params[:comment_id])
@comment_vote = @comment.vote!(params[:score])
respond_with(@comment_vote)
end
end