static async fetchStudentAnalyticsByCourseId()

in edu-analytics-be/web/app/controller/studentController.js [112:119]


    static async fetchStudentAnalyticsByCourseId(req, res, next) {
        try {
            const data = await StudentEntity.fetchStudentAnalyticsByCourseId(req.params.studentId, req.params.courseId);
            res.status(200).send(data);
        } catch (error) {
            next(error);
        }
    }