diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-10-22 08:35:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 08:35:55 -0400 |
commit | 514a240aedd972e6c8b707a7685c3d283f8618c9 (patch) | |
tree | 52e476ced593d0cb695c567a6c40afe4151c8c82 /synapse/rest/client/v1/events.py | |
parent | Don't 500 for invalid group IDs (#8628) (diff) | |
download | synapse-514a240aedd972e6c8b707a7685c3d283f8618c9.tar.xz |
Remove unused OPTIONS handlers. (#8621)
The handling of OPTIONS requests was consolidated in #7534, but the endpoint specific handlers were not removed.
Diffstat (limited to 'synapse/rest/client/v1/events.py')
-rw-r--r-- | synapse/rest/client/v1/events.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/rest/client/v1/events.py b/synapse/rest/client/v1/events.py index 1ecb77aa26..6de4078290 100644 --- a/synapse/rest/client/v1/events.py +++ b/synapse/rest/client/v1/events.py @@ -67,9 +67,6 @@ class EventStreamRestServlet(RestServlet): return 200, chunk - def on_OPTIONS(self, request): - return 200, {} - class EventRestServlet(RestServlet): PATTERNS = client_patterns("/events/(?P<event_id>[^/]*)$", v1=True) |