experiment with removing encryption stubs

This commit is contained in:
hippoz 2022-10-10 19:26:59 +03:00
parent 16998a3fd0
commit 4bd1339bf5
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -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(),