dellosmusic
Version:
Dellos Music Bot - Discord Music Bot
16 lines (13 loc) • 294 B
JavaScript
let config;
try {
//Config for testing
config = require("../../dev-config");
} catch {
//Config for production
config = require("../../botconfig");
}
const Auth = (req, res, next) => {
if (!req.user) return res.redirect(config.CallbackURL);
else next();
};
module.exports = Auth;