1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 13:14:06 +01:00

Merge pull request #475 from Thesourtimes/master

return an empty array at oauth2/tokens to have a response in connections
This commit is contained in:
Samuel 2021-10-17 20:55:44 +02:00 committed by GitHub
commit 6a565df575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
import { Router, Request, Response } from "express";
import { route } from "@fosscord/api";
const router = Router();
router.get("/",route({}), async (req: Request, res: Response) => {
//TODO
res.json([]);
});
export default router;