summary refs log tree commit diff
path: root/api/src/routes/users/@me/devices.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/users/@me/devices.ts')
-rw-r--r--api/src/routes/users/@me/devices.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/src/routes/users/@me/devices.ts b/api/src/routes/users/@me/devices.ts
index b16ef783..8556a3ad 100644
--- a/api/src/routes/users/@me/devices.ts
+++ b/api/src/routes/users/@me/devices.ts
@@ -1,8 +1,9 @@
 import { Router, Response, Request } from "express";
+import { route } from "@fosscord/api";
 
 const router = Router();
 
-router.post("/", (req: Request, res: Response) => {
+router.post("/", route({}), (req: Request, res: Response) => {
 	// TODO:
 	res.sendStatus(204);
 });