LearnPulse / app /controllers /students_controller.rb
Nambinintsoa Rovatiana RAMAROSON
first commit
874ae95
Raw
History Blame Contribute Delete
223 Bytes
class StudentsController < ApplicationController
# GET /students/:id/report
def report
student = authorize(Student.find(params[:id]))
@course = student.course
render html: "", layout: "app_router"
end
end