static async fetchStudentAnalytics()

in edu-analytics-be/web/app/controller/studentController.js [48:55]


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