wired up vote ux

This commit is contained in:
Mark Moser
2016-11-20 11:24:17 -06:00
parent 5ef7f82dbf
commit 74b2415b91
6 changed files with 75 additions and 22 deletions

View File

@ -7,9 +7,10 @@ module Admin
current_user.cast_yea_on(@candidate)
results = {
message: "Vote tallied!",
message: "Vote Counted",
upCount: @candidate.votes.yea.count,
downCount: @candidate.votes.nay.count
downCount: @candidate.votes.nay.count,
myVote: "yea"
}
render json: results.to_json
end
@ -20,9 +21,10 @@ module Admin
current_user.cast_nay_on(@candidate)
results = {
message: "Vote tallied!",
message: "Vote Counted",
upCount: @candidate.votes.yea.count,
downCount: @candidate.votes.nay.count
downCount: @candidate.votes.nay.count,
myVote: "nay"
}
render json: results.to_json
end
@ -32,7 +34,11 @@ module Admin
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.approve_candidate(@candidate)
results = { message: "Interview requested!" }
results = {
message: "Interview requested!",
requestCopy: "Requested",
declineCopy: "Decline Interview"
}
render json: results.to_json
end
@ -41,7 +47,11 @@ module Admin
@candidate = Candidate.find_by(test_hash: params[:test_hash])
current_user.decline_candidate(@candidate)
results = { message: "Interview declined." }
results = {
message: "Interview declined.",
requestCopy: "Request Interview",
declineCopy: "Declined"
}
render json: results.to_json
end
end