Retrospring/app/controllers/ajax/moderation_controller.rb

44 lines
877 B
Ruby
Raw Normal View History

2014-12-28 14:26:16 -08:00
class Ajax::ModerationController < ApplicationController
def vote
params.require :id
params.require :upvote
report = Report.find(params[:id])
begin
current_user.report_vote(report, params[:upvote])
rescue
@status = :fail
@message = "You have already voted on this report."
@success = false
return
end
@count = report.votes
@status = :okay
@message = "Successfully voted on report."
@success = true
end
def destroy_vote
params.require :id
report = Report.find(params[:id])
begin
current_user.report_unvote report
rescue
@status = :fail
@message = "You have not voted on that report."
@success = false
return
end
@count = report.votes
@status = :okay
@message = "Successfully removed vote from report."
@success = true
end
end