mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-16 23:00:53 +01:00
Stub APIs for sytest (#261)
This commit is contained in:
parent
8a395b0262
commit
42f264119f
1 changed files with 19 additions and 0 deletions
|
@ -345,4 +345,23 @@ func Setup(
|
||||||
return util.JSONResponse{Code: 200, JSON: struct{}{}}
|
return util.JSONResponse{Code: 200, JSON: struct{}{}}
|
||||||
}),
|
}),
|
||||||
).Methods("PUT", "OPTIONS")
|
).Methods("PUT", "OPTIONS")
|
||||||
|
|
||||||
|
// Stub implementations for sytest
|
||||||
|
r0mux.Handle("/events",
|
||||||
|
common.MakeAPI("events", func(req *http.Request) util.JSONResponse {
|
||||||
|
return util.JSONResponse{Code: 200, JSON: map[string]interface{}{
|
||||||
|
"chunk": []interface{}{},
|
||||||
|
"start": "",
|
||||||
|
"end": "",
|
||||||
|
}}
|
||||||
|
}),
|
||||||
|
).Methods("GET")
|
||||||
|
|
||||||
|
r0mux.Handle("/initialSync",
|
||||||
|
common.MakeAPI("initial_sync", func(req *http.Request) util.JSONResponse {
|
||||||
|
return util.JSONResponse{Code: 200, JSON: map[string]interface{}{
|
||||||
|
"end": "",
|
||||||
|
}}
|
||||||
|
}),
|
||||||
|
).Methods("GET")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue