summary refs log tree commit diff
path: root/scripts-dev/tail-synapse.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-07-11Inline issue_access_token (#5659)Richard van der Hoff3-8/+5
this is only used in one place, so it's clearer if we inline it and reduce the API surface. Also, fixes a buglet where we would create an access token even if we were about to block the user (we would never return the AT, so the user could never use it, but it was still created and added to the db.)
2019-07-10Remove access-token support from RegistrationStore.register (#5642)Richard van der Hoff9-79/+30
The 'token' param is no longer used anywhere except the tests, so let's kill that off too.
2019-07-10TypoBrendan Abolivier1-1/+1
2019-07-10Rename changelog fileBrendan Abolivier1-0/+0
2019-07-10Send 3PID bind requests as JSON dataBrendan Abolivier2-1/+2
2019-07-10Don't bundle aggregations when retrieving the original event (#5654)Andrew Morgan2-2/+13
A fix for PR #5626, which returned the original event content as part of a call to /relations. Only problem was that we were attempting to aggregate the relations on top of it when we did so. We now set bundle_aggregations to False in the get_event call. We also do this when pulling the relation events as well, because edits of edits are not something we'd like to support here.
2019-07-10Add a linting script (#5627)Andrew Morgan2-0/+13
Add a dev script to cover all the different linting steps.
2019-07-10Correct pep517 flag in readme (#5651)Bruno Windels2-1/+2
2019-07-09remove unused and unnecessary check for FederationDeniedError (#5645)Hubert Chathi2-4/+2
FederationDeniedError is a subclass of SynapseError, which is a subclass of CodeMessageExcept