diff options
author | Erik Johnston <erik@matrix.org> | 2019-04-15 18:40:15 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-04-15 18:51:48 +0100 |
commit | ec638a16022d29cbab32ac8ddb4cddb7f99d6495 (patch) | |
tree | 6f36e448bba2aeb4cda46d600b079ed0bed351fb /synapse/rest | |
parent | Newsfile (diff) | |
download | synapse-ec638a16022d29cbab32ac8ddb4cddb7f99d6495.tar.xz |
Only handle GET requests for /push_rules
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v1/push_rule.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py index c654f9b5f0..7e9d95de26 100644 --- a/synapse/rest/client/v1/push_rule.py +++ b/synapse/rest/client/v1/push_rule.py @@ -39,9 +39,13 @@ class PushRuleRestServlet(ClientV1RestServlet): super(PushRuleRestServlet, self).__init__(hs) self.store = hs.get_datastore() self.notifier = hs.get_notifier() + self._is_worker = hs.config.worker_app is not None @defer.inlineCallbacks def on_PUT(self, request): + if self._is_worker: + raise Exception("Cannot handle PUT /push_rules on worker") + spec = _rule_spec_from_path([x.decode('utf8') for x in request.postpath]) try: priority_class = _priority_class_from_spec(spec) @@ -103,6 +107,9 @@ class PushRuleRestServlet(ClientV1RestServlet): @defer.inlineCallbacks def on_DELETE(self, request): + if self._is_worker: + raise Exception("Cannot handle DELETE /push_rules on worker") + spec = _rule_spec_from_path([x.decode('utf8') for x in request.postpath]) requester = yield self.auth.get_user_by_req(request) |