Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove deprecated `/_matrix/client/*/admin` endpoints (#8785) | Dirk Klimpel | 2020-11-25 | 1 | -1/+1 |
| | | | These are now only available via `/_synapse/admin/v1`. | ||||
* | Remove redundant calls to `render()` | Richard van der Hoff | 2020-11-16 | 1 | -2/+1 |
| | |||||
* | fixup test | Richard van der Hoff | 2020-11-16 | 1 | -0/+1 |
| | |||||
* | Add a `custom_headers` param to `make_request` (#8760) | Richard van der Hoff | 2020-11-16 | 1 | -6/+7 |
| | | | | Some tests want to set some custom HTTP request headers, so provide a way to do that before calling requestReceived(). | ||||
* | Tell Black to format code for Python 3.5 (#8664) | Dan Callahan | 2020-10-27 | 1 | -1/+1 |
| | | | | | | | | This allows trailing commas in multi-line arg lists. Minor, but we might as well keep our formatting current with regard to our minimum supported Python version. Signed-off-by: Dan Callahan <danc@element.io> | ||||
* | Allow for make_awaitable's return value to be re-used. (#8261) | Patrick Cloke | 2020-09-08 | 1 | -1/+1 |
| | |||||
* | Convert stats and related calls to async/await (#8192) | Patrick Cloke | 2020-08-27 | 1 | -3/+2 |
| | |||||
* | Rename database classes to make some sense (#8033) | Erik Johnston | 2020-08-05 | 1 | -13/+13 |
| | |||||
* | Optimise some references to hs.config (#7546) | Richard van der Hoff | 2020-05-22 | 1 | -8/+5 |
| | | | These are surprisingly expensive, and we only really need to do them at startup. | ||||
* | Fix race which caused deleted devices to reappear (#6514) | Richard van der Hoff | 2019-12-10 | 1 | -20/+29 |
| | | | | Stop the `update_client_ips` background job from recreating deleted devices. | ||||
* | Move background update handling out of store | Erik Johnston | 2019-12-05 | 1 | -7/+19 |
| | |||||
* | Move DB pool and helper functions into dedicated Database class | Erik Johnston | 2019-12-05 | 1 | -6/+6 |
| | |||||
* | Remove underscore from SQLBaseStore functions | Erik Johnston | 2019-12-04 | 1 | -6/+6 |
| | |||||
* | Test that pruning of old user IPs works | Erik Johnston | 2019-09-24 | 1 | -0/+71 |
| | |||||
* | Test background update | Erik Johnston | 2019-09-23 | 1 | -0/+79 |
| | |||||
* | Query devices table for last seen info. | Erik Johnston | 2019-09-23 | 1 | -1/+0 |
| | | | | | | | | This is a) simpler than querying user_ips directly and b) means we can purge older entries from user_ips without losing the required info. The storage functions now no longer return the access_token, since it was unused. | ||||
* | Remove access-token support from RegistrationStore.register (#5642) | Richard van der Hoff | 2019-07-10 | 1 | -3/+1 |
| | | | | | The 'token' param is no longer used anywhere except the tests, so let's kill that off too. | ||||
* | Run Black. (#5482) | Amber Brown | 2019-06-20 | 1 | -10/+10 |
| | |||||
* | Add admin api for sending server_notices (#5121) | Richard van der Hoff | 2019-05-02 | 1 | -1/+4 |
| | |||||
* | Move admin api impl to its own package | Richard van der Hoff | 2019-05-01 | 1 | -2/+3 |
| | | | | It doesn't really belong under rest/client/v1 any more. | ||||
* | Fix adding new rows instead of updating them if one of the key values is a ↵ | Amber Brown | 2019-01-09 | 1 | -0/+71 |
| | | | | NULL in upserts. (#4369) | ||||
* | Fix userconsent on Python 3 (#3938) | Amber Brown | 2018-10-02 | 1 | -46/+2 |
| | |||||
* | Fix client IPs being broken on Python 3 (#3908) | Amber Brown | 2018-09-20 | 1 | -35/+167 |
| | |||||
* | ensure guests never enter mau list | Neil Johnson | 2018-09-06 | 1 | -3/+1 |
| | |||||
* | Merge pull request #3670 from matrix-org/neilj/mau_sync_block | Neil Johnson | 2018-08-14 | 1 | -6/+6 |
|\ | | | | | Block ability to read via sync if mau limit exceeded | ||||
| * | rename _user_last_seen_monthly_active | Neil Johnson | 2018-08-09 | 1 | -6/+6 |
| | | |||||
* | | Run tests under PostgreSQL (#3423) | Amber Brown | 2018-08-13 | 1 | -1/+1 |
| | | |||||
* | | Run black. | black | 2018-08-10 | 1 | -8/+7 |
|/ | |||||
* | wip commit - tests failing | Neil Johnson | 2018-08-03 | 1 | -6/+6 |
| | |||||
* | fix (lots of) py3 test failures | Neil Johnson | 2018-08-03 | 1 | -1/+0 |
| | |||||
* | fix py3 test failure | Neil Johnson | 2018-08-03 | 1 | -0/+1 |
| | |||||
* | insertion into monthly_active_users | Neil Johnson | 2018-08-02 | 1 | -3/+63 |
| | |||||
* | Fix up | Erik Johnston | 2017-06-27 | 1 | -4/+1 |
| | |||||
* | Fix up client ips to read from pending data | Erik Johnston | 2017-06-27 | 1 | -4/+1 |
| | |||||
* | GET /devices endpoint | Richard van der Hoff | 2016-07-20 | 1 | -0/+62 |
implement a GET /devices endpoint which lists all of the user's devices. It also returns the last IP where we saw that device, so there is some dancing to fish that out of the user_ips table. |