mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-03 13:18:56 +01:00
Comment
This commit is contained in:
parent
97479d0c54
commit
acb501c46d
1 changed files with 12 additions and 1 deletions
|
@ -152,6 +152,14 @@ class KeyQueryServlet(RestServlet):
|
|||
|
||||
|
||||
class KeyChangesServlet(RestServlet):
|
||||
"""Returns the list of changes of keys between two stream tokens (may return
|
||||
spurious results).
|
||||
|
||||
GET /keys/changes?from=...&to=...
|
||||
|
||||
200 OK
|
||||
{ "changed": ["@foo:example.com"] }
|
||||
"""
|
||||
PATTERNS = client_v2_patterns(
|
||||
"/keys/changes$",
|
||||
releases=()
|
||||
|
@ -171,7 +179,10 @@ class KeyChangesServlet(RestServlet):
|
|||
requester = yield self.auth.get_user_by_req(request, allow_guest=True)
|
||||
|
||||
from_token_string = parse_string(request, "from")
|
||||
parse_string(request, "to") # We want to enforce they do pass us one.
|
||||
|
||||
# We want to enforce they do pass us one, but we ignore it and return
|
||||
# changes after the "to" as well as before.
|
||||
parse_string(request, "to")
|
||||
|
||||
from_token = StreamToken.from_string(from_token_string)
|
||||
|
||||
|
|
Loading…
Reference in a new issue