Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Correctly mention previous copyright (#16820) | Erik Johnston | 2024-01-23 | 1 | -0/+1 |
| | | | | | During the migration the automated script to update the copyright headers accidentally got rid of some of the existing copyright lines. Reinstate them. | ||||
* | Merge remote-tracking branch 'gitlab/clokep/license-license' into new_develop | Erik Johnston | 2023-12-13 | 1 | -10/+16 |
|\ | |||||
| * | Update license headers | Patrick Cloke | 2023-11-21 | 1 | -10/+16 |
| | | |||||
* | | Add avatar and topic settings for server notice room (#16679) | Mathieu Velten | 2023-12-12 | 1 | -0/+109 |
| | | |||||
* | | Server notices: add an autojoin setting for the notices room (#16699) | Mathieu Velten | 2023-12-04 | 1 | -0/+27 |
|/ | | | | Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> | ||||
* | Add automatic purge after all users forget a room (#15488) | Mathieu Velten | 2023-09-15 | 1 | -3/+17 |
| | | | | | | Also add restore of purge/shutdown rooms after a synapse restart. Co-authored-by: Eric Eastwood <erice@matrix.org> Co-authored-by: Erik Johnston <erikj@matrix.org> | ||||
* | Bump black from 22.12.0 to 23.1.0 (#15103) | dependabot[bot] | 2023-02-22 | 1 | -1/+0 |
| | |||||
* | Return read-only collections from `@cached` methods (#13755) | Sean Quah | 2023-02-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | It's important that collections returned from `@cached` methods are not modified, otherwise future retrievals from the cache will return the modified collection. This applies to the return values from `@cached` methods and the values inside the dictionaries returned by `@cachedList` methods. It's not necessary for the dictionaries returned by `@cachedList` methods themselves to be read-only. Signed-off-by: Sean Quah <seanq@matrix.org> Co-authored-by: David Robertson <davidr@element.io> | ||||
* | Fix that sending server notices fail if avatar is `None` (#13566) | Dirk Klimpel | 2022-08-23 | 1 | -0/+56 |
| | | | Indroduced in #11846. | ||||
* | Use literals in place of `HTTPStatus` constants in tests (#13488) | Dirk Klimpel | 2022-08-10 | 1 | -8/+7 |
| | | | | | | | | | * Use literals in place of `HTTPStatus` constants in tests * newsfile * code style * code style | ||||
* | Use literals in place of `HTTPStatus` constants in tests (#13479) | Dirk Klimpel | 2022-08-09 | 1 | -4/+4 |
| | | | | | | | | | | Replace - `HTTPStatus.NOT_FOUND` - `HTTPStatus.FORBIDDEN` - `HTTPStatus.UNAUTHORIZED` - `HTTPStatus.CONFLICT` - `HTTPStatus.CREATED` Signed-off-by: Dirk Klimpel <dirk@klimpel.org> | ||||
* | Use literals in place of `HTTPStatus` constants in tests (#13469) | Dirk Klimpel | 2022-08-08 | 1 | -7/+7 |
| | |||||
* | Update the server notices user profile in room if changed. (#12115) | Jorge Florian | 2022-04-08 | 1 | -0/+92 |
| | |||||
* | Remove redundant `get_success` calls in test code (#12346) | Richard van der Hoff | 2022-04-01 | 1 | -9/+3 |
| | | | There are a bunch of places we call get_success on an immediate value, which is unnecessary. Let's rip them out, and remove the redundant functionality in get_success and friends. | ||||
* | Remove `HomeServer.get_datastore()` (#12031) | Richard van der Hoff | 2022-02-23 | 1 | -1/+1 |
| | | | | | | | The presence of this method was confusing, and mostly present for backwards compatibility. Let's get rid of it. Part of #11733 | ||||
* | Add type hints to `synapse/tests/rest/admin` (#11501) | Dirk Klimpel | 2021-12-03 | 1 | -12/+15 |
| | |||||
* | Convert status codes to `HTTPStatus` in `tests.rest.admin` (#11455) | Dirk Klimpel | 2021-11-30 | 1 | -18/+27 |
| | |||||
* | Improve ServerNoticeServlet to avoid duplicate requests (#10679) | Dirk Klimpel | 2021-08-27 | 1 | -0/+450 |
Fixes: #9544 |