mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
Stubbed out oauth callback handler
This commit is contained in:
@@ -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!'
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user