Archived
2

Allow predictions to be saved

This commit is contained in:
2021-02-24 13:59:25 +01:00
parent 67d59cedfe
commit 3bad5416a8
4 changed files with 28 additions and 6 deletions

20
src/routes/prediction.ts Normal file
View File

@ -0,0 +1,20 @@
import express from 'express';
import mongoose from 'mongoose';
import db from '../db';
import PredictionModel from '../models/prediction';
const router = express.Router();
router.post('/prediction/new', (req, res, next) => {
console.log("New Prediction");
console.log(JSON.stringify(req.body));
new PredictionModel(req.body).save((err, data) => {
if(err) return next(err);
db.log(req, 'predictions', {_id: data._id}, data.toObject());
});
});
module.exports = router;