Stubbed out oauth callback handler

This commit is contained in:
Alec LaLonde
2021-03-11 20:33:44 -07:00
parent b959e664f1
commit 50f2307002

View File

@@ -0,0 +1,13 @@
import { Request, Response } from 'express';
export const handleOAuthCallback = async (
_: Request,
res: Response,
): Promise<void> => {
console.log('Discord OAuth Callback URL called!');
console.log(_);
res.json({
status: 'Success!'
});
};