Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-09-11 | Add note about extra arg to send_membership_event, remove arg in ↵ | Andrew Morgan | 2 | -10/+3 | |
remote_reject_invite (#6009) Some small fixes to `room_member.py` found while doing other PRs. 1. Add requester to the base `_remote_reject_invite` method. 2. `send_membership_event`'s docstring was out of date and took in a `remote_room_hosts` arg that was not used and no calling function provided. | |||||
2019-09-11 | Send id access_token via Authorization headers, not JSON body | Andrew Morgan | 2 | -24/+26 | |
2019-09-11 | Check dependencies on setup in the nicer way. (#5989) | Jorik Schellekens | 4 | -28/+20 | |
2019-09-11 | Fix existing v2 identity server calls (MSC2140) (#6013) | Andrew Morgan | 2 | -2/+27 | |
Two things I missed while implementing [MSC2140](https://github.com/matrix-org/matrix-doc/pull/2140/files#diff-c03a26de5ac40fb532de19cb7fc2aaf7R80). 1. Access tokens should be provided to the identity server as `access_token`, not `id_access_token`, even though the homeserver may accept the tokens as `id_access_token`. 2. Access tokens must be sent to the identity server in a query parameter, the JSON body is not allowed. We now send the access token as part of an `Authorization: ...` header, which fixes both things. The breaking code was added in https://github.com/matrix-org/synapse/pull/5892 Sytest PR: https://github.com/matrix-org/sytest/pull/697 | |||||
2019-09-11 | Address review comments. | Andrew Morgan | 1 | -16/+7 | |
2019-09-11 | Remove origin parameter from add_display_name_to_third_party_invite and add ↵ | Andrew Morgan | 4 | -4/+10 | |
params to docstring (#6010) Another small fixup noticed during work on a larger PR. The `origin` field of `add_display_name_to_third_party_invite` is not used and likely was just carried over from the `on_PUT` method of `FederationThirdPartyInviteExchangeServlet` which, like all other servlets, provides an `origin` argument. Since it's not used anywhere in the handler function though, we should remove it from the function arguments. | |||||
2019-09-10 | Add changelog | Andrew Morgan | 3 | -4/+5 | |
2019-09-10 | Use account_threepid_delegate for 3pid validation | Andrew Morgan | 3 | -42/+45 | |
2019-09-10 | id_access_token -> access_token in query params | Andrew Morgan | 1 | -2/+2 | |
2019-09-09 | lint | Andrew Morgan | 1 | -15/+10 | |
2019-09-09 | address review comments | Andrew Morgan | 1 | -24/+37 | |
2019-09-10 | Add a build info metric to Prometheus (#6005) | Amber Brown | 3 | -2/+33 | |
2019-09-09 | Fix code style, again | Jason Robinson | 1 | -3/+1 | |
Signed-off-by: Jason Robinson <jasonr@matrix.org> | |||||
2019-09-09 | Fix comments | Erik Johnston | 1 | -2/+3 | |
2019-09-09 | Simplify count_real_users SQL to only count user_type is null rows | Jason Robinson | 1 | -1/+1 | |
Signed-off-by: Jason Robinson <jasonr@matrix.org> | |||||
2019-09-09 | Simplify is_real_user_txn check to trust user_type is null if real user | Jason Robinson | 1 | -1/+1 | |
Signed-off-by: Jason Robinson <jasonr@matrix.org> | |||||
2019-09-09 | Default to censoring redactions after seven days | Erik Johnston | 2 | -7/+11 | |
2019-09-09 | Use better names in SQL | Erik Johnston | 1 | -5/+8 | |
2019-09-09 | Fixup comment | Erik Johnston | 1 | -4/+12 | |
2019-09-09 | Don't start looping call unless enabled | Erik Johnston | 1 | -1/+2 | |
2019-09-09 | Handle setting retention period to 0 | Erik Johnston | 2 | -2/+2 | |
2019-09-09 | Auto-fix a few code style issues | Jason Robinson | 1 | -4/+4 | |
Signed-off-by: Jason Robinson <jasonr@matrix.org> | |||||
2019-09-09 | Only count real users when checking for auto-creation of auto-join room | Jason Robinson | 4 | -10/+71 | |
Previously if the first registered user was a "support" or "bot" user, when the first |