diff --git a/src/routes/matrix/index.ts b/src/routes/matrix/index.ts index de84559..43d0704 100644 --- a/src/routes/matrix/index.ts +++ b/src/routes/matrix/index.ts @@ -393,28 +393,6 @@ router.get( } ); -router.post( - "/_matrix/client/r0/keys/query", - authenticateRoute(), - (req, res) => { - res.json({ - device_keys: {}, - fallback_keys: {}, - one_time_keys: {} - }); - } -); - -router.post( - "/_matrix/client/r0/keys/upload", - authenticateRoute(), - (req, res) => { - res.json({ - one_time_key_counts: {signed_curve25519:2000} - }); - } -); - router.get( "/_matrix/client/r0/profile/:userId", authenticateRoute(),