skill-assessment-app/app/controllers/admin/vote_controller.rb

59 lines
1.5 KiB
Ruby
Raw Normal View History

2016-11-19 16:34:48 -06:00
# frozen_string_literal: true
module Admin
class VoteController < AdminController
def up
authorize ReviewerVote
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.cast_yea_on(@candidate)
results = {
2016-11-20 11:24:17 -06:00
message: "Vote Counted",
2016-11-19 16:34:48 -06:00
upCount: @candidate.votes.yea.count,
2016-11-20 11:24:17 -06:00
downCount: @candidate.votes.nay.count,
myVote: "yea"
2016-11-19 16:34:48 -06:00
}
render json: results.to_json
end
def down
authorize ReviewerVote
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.cast_nay_on(@candidate)
results = {
2016-11-20 11:24:17 -06:00
message: "Vote Counted",
2016-11-19 16:34:48 -06:00
upCount: @candidate.votes.yea.count,
2016-11-20 11:24:17 -06:00
downCount: @candidate.votes.nay.count,
myVote: "nay"
2016-11-19 16:34:48 -06:00
}
render json: results.to_json
end
def approve
authorize ReviewerVote
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.approve_candidate(@candidate)
2016-11-20 11:24:17 -06:00
results = {
message: "Interview requested!",
requestCopy: "Requested",
declineCopy: "Decline Interview"
}
2016-11-19 16:34:48 -06:00
render json: results.to_json
end
def decline
authorize ReviewerVote
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.decline_candidate(@candidate)
2016-11-20 11:24:17 -06:00
results = {
message: "Interview declined.",
requestCopy: "Request Interview",
declineCopy: "Declined"
}
2016-11-19 16:34:48 -06:00
render json: results.to_json
end
end
end