Make trailing slash on server key request optional (#788)

Cherry-picked from 7e861b60fbd721b374ec929926b14e57dc60ec41
main
Alex Chen 2019-08-20 01:01:53 +08:00 committed by GitHub
parent 0ed2dd0b15
commit a81917c3e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ func Setup(
// {keyID} argument and always return a response containing all of the keys.
v2keysmux.Handle("/server/{keyID}", localKeys).Methods(http.MethodGet)
v2keysmux.Handle("/server/", localKeys).Methods(http.MethodGet)
v2keysmux.Handle("/server", localKeys).Methods(http.MethodGet)
v1fedmux.Handle("/send/{txnID}", common.MakeFedAPI(
"federation_send", cfg.Matrix.ServerName, keys,

View File

@ -170,3 +170,4 @@ Deleted tags appear in an incremental v2 /sync
Outbound federation can query profile data
/event/ on joined room works
/event/ does not allow access to events before the user joined
Federation key API allows unsigned requests for keys