Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Move /batch_send to /v2_alpha directory (MSC2716) (#10576)
Browse files Browse the repository at this point in the history
* Move /batch_send to /v2_alpha directory

As pointed out by @erikjohnston,
#10552 (comment)
  • Loading branch information
MadLittleMods authored Aug 13, 2021
1 parent c12b557 commit c8d54be
Show file tree
Hide file tree
Showing 4 changed files with 445 additions and 409 deletions.
1 change: 1 addition & 0 deletions changelog.d/10576.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Move `/batch_send` endpoint defined by [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) to the `/v2_alpha` directory.
2 changes: 2 additions & 0 deletions synapse/rest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
register,
relations,
report_event,
room as roomv2,
room_keys,
room_upgrade_rest_servlet,
sendtodevice,
Expand Down Expand Up @@ -117,6 +118,7 @@ def register_servlets(client_resource, hs):
user_directory.register_servlets(hs, client_resource)
groups.register_servlets(hs, client_resource)
room_upgrade_rest_servlet.register_servlets(hs, client_resource)
roomv2.register_servlets(hs, client_resource)
capabilities.register_servlets(hs, client_resource)
account_validity.register_servlets(hs, client_resource)
relations.register_servlets(hs, client_resource)
Expand Down
Loading

0 comments on commit c8d54be

Please sign in to comment.