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

25 lines
711 B
Ruby
Raw Normal View History

2016-09-22 14:19:44 -05:00
# frozen_string_literal: true
module Admin
class ResultController < AdminController
#
# TODO: change context from Candidate to Quiz
# bypass pundit lockdowns until completed
after_action :skip_policy_scope
after_action :skip_authorization
#
2016-09-22 17:26:00 -05:00
# TODO: Limit results to the quizzes current_user has access to
2016-09-22 14:19:44 -05:00
def index
@candidates = Candidate.where(completed: true)
.includes(:recruiter)
.order(:review_status, completed_at: :desc)
2016-09-22 14:19:44 -05:00
end
def view
@candidate = Candidate.find_by(test_hash: params[:test_hash])
@quiz = @candidate.my_quiz
@status = QuizStatus.new(@candidate)
end
end
end