diff options
author | David Baker <dave@matrix.org> | 2015-02-05 15:45:16 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-02-05 15:45:16 +0000 |
commit | a93fa42bcef97b1e5f938a3a96f5afcbaeaef376 (patch) | |
tree | 9ac6be8245259a9e8f6ca6e246c50b2eedac2414 /synapse/rest/client | |
parent | Give server default rules the 'default' attribute and fix various brokenness. (diff) | |
download | synapse-a93fa42bcef97b1e5f938a3a96f5afcbaeaef376.tar.xz |
priority class now dealt with in namespaced rule_id
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v1/push_rule.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py index 80f116b1ed..d43ade39dd 100644 --- a/synapse/rest/client/v1/push_rule.py +++ b/synapse/rest/client/v1/push_rule.py @@ -82,10 +82,6 @@ class PushRuleRestServlet(ClientV1RestServlet): @defer.inlineCallbacks def on_DELETE(self, request): spec = _rule_spec_from_path(request.postpath) - try: - priority_class = _priority_class_from_spec(spec) - except InvalidRuleException as e: - raise SynapseError(400, e.message) user, _ = yield self.auth.get_user_by_req(request) |