comment votes: add index page.

This commit is contained in:
evazion
2019-10-28 14:12:40 -05:00
parent 93b03c04ad
commit d3165f78aa
6 changed files with 86 additions and 5 deletions

View File

@@ -1,9 +1,14 @@
class CommentVotesController < ApplicationController
respond_to :js, :json, :xml
before_action :member_only
skip_before_action :api_check
respond_to :js, :json, :xml, :html
rescue_with CommentVote::Error, ActiveRecord::RecordInvalid, status: 422
def index
@comment_votes = CommentVote.includes(:user, comment: [:creator, :post]).paginated_search(params)
respond_with(@comment_votes)
end
def create
@comment = Comment.find(params[:comment_id])
@comment_vote = @comment.vote!(params[:score])