Whine if we give a from param to /sync

This commit is contained in:
Erik Johnston 2016-01-20 15:42:57 +00:00
parent a2ae01cc0f
commit 73ca8e5834

View file

@ -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
)