diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-03-30 12:12:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 12:12:44 +0100 |
commit | f02663c4ddfa259c96aebde848a83156540c9fb3 (patch) | |
tree | 00667a26bc8f9cbda98a3ea0f6d6312476489f34 /synapse/storage | |
parent | Make RateLimiter class check for ratelimit overrides (#9711) (diff) | |
download | synapse-f02663c4ddfa259c96aebde848a83156540c9fb3.tar.xz |
Replace `room_invite_state_types` with `room_prejoin_state` (#9700)
`room_invite_state_types` was inconvenient as a configuration setting, because anyone that ever set it would not receive any new types that were added to the defaults. Here, we deprecate the old setting, and replace it with a couple of new settings under `room_prejoin_state`.
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/events_worker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/events_worker.py b/synapse/storage/databases/main/events_worker.py index 952d4969b2..c00780969f 100644 --- a/synapse/storage/databases/main/events_worker.py +++ b/synapse/storage/databases/main/events_worker.py @@ -16,7 +16,7 @@ import logging import threading from collections import namedtuple -from typing import Dict, Iterable, List, Optional, Tuple, overload +from typing import Container, Dict, Iterable, List, Optional, Tuple, overload from constantly import NamedConstant, Names from typing_extensions import Literal @@ -544,7 +544,7 @@ class EventsWorkerStore(SQLBaseStore): async def get_stripped_room_state_from_event_context( self, context: EventContext, - state_types_to_include: List[EventTypes], + state_types_to_include: Container[str], membership_user_id: Optional[str] = None, ) -> List[JsonDict]: """ |