move recruiter to admin/candidate
This commit is contained in:
70
app/controllers/admin/candidate_controller.rb
Normal file
70
app/controllers/admin/candidate_controller.rb
Normal file
@ -0,0 +1,70 @@
|
||||
# frozen_string_literal: true
|
||||
module Admin
|
||||
class CandidateController < AdminController
|
||||
before_action :collect_quizzes, except: [:login, :auth]
|
||||
|
||||
def index
|
||||
@candidates = policy_scope current_recruiter.candidates
|
||||
end
|
||||
|
||||
def new
|
||||
authorize Candidate
|
||||
@candidate = Candidate.new
|
||||
render :new
|
||||
end
|
||||
|
||||
def create
|
||||
authorize Candidate
|
||||
@candidate = Candidate.create(candidate_params.merge(recruiter_id: current_recruiter.id))
|
||||
|
||||
if @candidate.persisted?
|
||||
send_notifications @candidate
|
||||
redirect_to admin_candidate_path,
|
||||
flash: { success: "Sucessfully created candidate #{@candidate.name}" }
|
||||
else
|
||||
flash[:error] = "Failed to save candidate."
|
||||
render :new
|
||||
end
|
||||
end
|
||||
|
||||
def edit
|
||||
authorize Candidate
|
||||
@candidate = Candidate.find_by(id: params[:id])
|
||||
end
|
||||
|
||||
def update
|
||||
authorize Candidate
|
||||
@candidate = Candidate.find_by(id: params[:id])
|
||||
@candidate.update(candidate_params)
|
||||
|
||||
if @candidate.save
|
||||
redirect_to admin_candidate_path, flash: { success: "#{@candidate.name} updated!" }
|
||||
else
|
||||
flash[:error] = "Failed to save candidate."
|
||||
render :edit
|
||||
end
|
||||
end
|
||||
|
||||
def resend_welcome
|
||||
authorize Candidate
|
||||
candidate = Candidate.find_by(id: params[:id])
|
||||
CandidateMailer.welcome(candidate).deliver_later
|
||||
render json: { message: "Email queued!" }.to_json
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def candidate_params
|
||||
params.require(:candidate).permit(:name, :email, :experience, :quiz_id)
|
||||
end
|
||||
|
||||
def collect_quizzes
|
||||
@quizzes ||= Quiz.order(:name)
|
||||
end
|
||||
|
||||
def send_notifications candidate
|
||||
CandidateMailer.welcome(candidate).deliver_later
|
||||
RecruiterMailer.candidate_created(candidate).deliver_later
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user