Added new submission method

This commit is contained in:
Ajay Ramachandran
2020-04-06 16:43:47 -04:00
parent b74ca3962b
commit bd2f00d5f7
6 changed files with 391 additions and 197 deletions

View File

@@ -0,0 +1,9 @@
var config = require('../config.js');
var postSkipSegments = require('./postSkipSegments.js');
module.exports = async function submitSponsorTimes(req, res) {
req.query.category = "sponsor";
return postSkipSegments(req, res);
}