diff options
author | Aaron R <aaron@raim.ist> | 2021-11-16 07:47:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 14:47:58 +0100 |
commit | dfa536490ee2295d664160362c6339d5e39b6b85 (patch) | |
tree | a5b36b04092abfc2f35d70e140be9a1af6f610b1 /synapse/rest/client/_base.py | |
parent | Add most missing type hints to synapse.util (#11328) (diff) | |
download | synapse-dfa536490ee2295d664160362c6339d5e39b6b85.tar.xz |
Add support for `/_matrix/client/v3` APIs (#11318)
This is one of the changes required to support Matrix 1.1 Signed-off-by: Aaron Raimist <aaron@raim.ist>
Diffstat (limited to 'synapse/rest/client/_base.py')
-rw-r--r-- | synapse/rest/client/_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/_base.py b/synapse/rest/client/_base.py index a0971ce994..b4cb90cb76 100644 --- a/synapse/rest/client/_base.py +++ b/synapse/rest/client/_base.py @@ -27,7 +27,7 @@ logger = logging.getLogger(__name__) def client_patterns( path_regex: str, - releases: Iterable[int] = (0,), + releases: Iterable[str] = ("r0", "v3"), unstable: bool = True, v1: bool = False, ) -> Iterable[Pattern]: @@ -52,7 +52,7 @@ def client_patterns( v1_prefix = CLIENT_API_PREFIX + "/api/v1" patterns.append(re.compile("^" + v1_prefix + path_regex)) for release in releases: - new_prefix = CLIENT_API_PREFIX + "/r%d" % (release,) + new_prefix = CLIENT_API_PREFIX + f"/{release}" patterns.append(re.compile("^" + new_prefix + path_regex)) return patterns |