22 lines
546 B
Ruby
22 lines
546 B
Ruby
class CommentVotesController < ApplicationController
|
|
respond_to :js, :json, :xml
|
|
before_filter :member_only
|
|
skip_before_filter :api_check
|
|
|
|
def create
|
|
@comment = Comment.find(params[:comment_id])
|
|
@comment_vote = @comment.vote!(params[:score])
|
|
rescue CommentVote::Error, ActiveRecord::RecordInvalid => x
|
|
@error = x
|
|
render status: 500
|
|
end
|
|
|
|
def destroy
|
|
@comment = Comment.find(params[:comment_id])
|
|
@comment.unvote!(params[:score])
|
|
rescue CommentVote::Error => x
|
|
@error = x
|
|
render status: 500
|
|
end
|
|
end
|