diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-20 15:42:57 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-20 15:42:57 +0000 |
commit | 73ca8e58344524610a2d512977f5a8cc0cc1b4a6 (patch) | |
tree | 1362238932c36eb0efd202dd991d315c9df25cbf /synapse/rest | |
parent | Merge pull request #510 from matrix-org/daniel/nonguestpeeking (diff) | |
download | synapse-73ca8e58344524610a2d512977f5a8cc0cc1b4a6.tar.xz |
Whine if we give a from param to /sync
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v2_alpha/sync.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py index df4b305b49..4114a7e430 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py @@ -85,6 +85,13 @@ class SyncRestServlet(RestServlet): @defer.inlineCallbacks def on_GET(self, request): + if "from" in request.args: + # /events used to use 'from', but /sync uses 'since'. + # Lets be helpful and whine if we see a 'from'. + raise SynapseError( + 400, "'from' is not a valid query parameter. Did you mean 'since'?" + ) + requester = yield self.auth.get_user_by_req( request, allow_guest=True ) |