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

35 lines
1.1 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
@candidate = Candidate.find_by(test_hash: params[:test_hash])
2016-11-20 13:07:53 -06:00
authorize ReviewerVote.find_by(user_id: current_user.id, candidate_id: @candidate.id)
2016-11-19 16:34:48 -06:00
current_user.cast_yea_on(@candidate)
end
def down
@candidate = Candidate.find_by(test_hash: params[:test_hash])
2016-11-20 13:07:53 -06:00
authorize ReviewerVote.find_by(user_id: current_user.id, candidate_id: @candidate.id)
2016-11-19 16:34:48 -06:00
current_user.cast_nay_on(@candidate)
end
def approve
@candidate = Candidate.find_by(test_hash: params[:test_hash])
2016-11-20 13:07:53 -06:00
authorize ReviewerVote.find_by(user_id: current_user.id, candidate_id: @candidate.id)
2016-11-19 16:34:48 -06:00
if current_user.approve_candidate(@candidate)
RecruiterMailer.interview_requested(@candidate).deliver_later
end
2016-11-19 16:34:48 -06:00
end
def decline
@candidate = Candidate.find_by(test_hash: params[:test_hash])
2016-11-20 13:07:53 -06:00
authorize ReviewerVote.find_by(user_id: current_user.id, candidate_id: @candidate.id)
2016-11-19 16:34:48 -06:00
if current_user.decline_candidate(@candidate)
RecruiterMailer.interview_declined(@candidate).deliver_later
end
2016-11-19 16:34:48 -06:00
end
end
end