static async updateStudentAnalytics()

in edu-analytics-be/web/app/controller/studentController.js [66:73]


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