Chat report table working

This commit is contained in:
2021-03-28 07:57:56 +11:00
parent f83ef938ab
commit ab0bad4f73
6 changed files with 92 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const { chatlog, reports } = require('../database/models');
//admin/reports
const route = async (req, res) => {
const reps = await reports.destroy({
where: {
chatlogId: req.body.chatlogId
}
});
//respond
res.status(200).end();
};
module.exports = route;