matrix-org
Here are 108 public repositories matching this topic...
-
Updated
Jan 24, 2021 - HTML
-
Updated
Jan 22, 2021 - Python
-
Updated
Jan 23, 2021 - Go
-
Updated
Jan 23, 2021 - Go
-
Updated
Dec 25, 2018 - Java
Resolving this issue involves going through the handlers in the modules/ tree alongside the matrix client and server specification to flag methods required to be rate-limited. Currently some are, but many are not.
Example of a method with the flag:
resource::method
method
{
resource, "GET", handler,
{
method.REQUIRES_AUTH |
method.RATE_LIMITED
}
};
`
-
Updated
Jan 23, 2021 - JavaScript
-
Updated
Jan 23, 2021 - Python
-
Updated
Jan 22, 2021 - Rust
Invalidates a user access token
Invalidates an existing access token, so that it can no longer be used for
authorization. The device associated with the access token is also deleted.
Device keys <#device-keys>_ for the device are deleted alongside the device.
Spec: https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-logout
Some helpful steps:
- add route to routes
The most important feature would be to export room encryption keys per room. This would allow, for instance, an old member of an E2E encrypted room to supply keys to a newer member so they can read history prior to their join.
The function export_keys from the Ru
-
Updated
Jan 18, 2021 - Python
-
Updated
Jan 8, 2021 - Go
-
Updated
Jan 23, 2021 - Python
-
Updated
Jan 22, 2021 - PHP
-
Updated
Jan 18, 2021 - Go
-
Updated
Jan 22, 2021 - JavaScript
Sorunome has inline custom emoji things for matrix (there is also somewhere a Spec proposal for this). Basically we need to convert mxc links to real urls in text.
Currently there is the option "Create conference calls with jitsi" which you can enable in settings.
As the jitsi-related stuff got removed this option should not have any meaning.
-
Updated
Sep 5, 2019 - Go
-
Updated
Jan 22, 2021 - Python
-
Updated
Nov 28, 2020 - Shell
-
Updated
Jan 19, 2021 - Rust
-
Updated
Jan 23, 2021 - TypeScript
-
Updated
Jun 14, 2019 - Crystal
Improve this page
Add a description, image, and links to the matrix-org topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the matrix-org topic, visit your repo's landing page and select "manage topics."


Description:
Add a health check (
/health) endpoint that allows orchestration tools to see if a component is up and running.Potential solutions
Add