mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-01 03:03:10 -06:00
More docs
This commit is contained in:
parent
9a9caf86eb
commit
af4428738a
|
|
@ -121,7 +121,7 @@ func Setup(
|
||||||
// So make a named path variable called 'version' (which we will never read in handlers) and then do
|
// So make a named path variable called 'version' (which we will never read in handlers) and then do
|
||||||
// (r0|v3) - BUT this is a captured group, which makes no sense because you cannot extract this group
|
// (r0|v3) - BUT this is a captured group, which makes no sense because you cannot extract this group
|
||||||
// from a match (gorilla/mux exposes no way to do this) so it demands you make it a non-capturing group
|
// from a match (gorilla/mux exposes no way to do this) so it demands you make it a non-capturing group
|
||||||
// using ?: so the final regexp becomes what is below.
|
// using ?: so the final regexp becomes what is below. We also need a trailing slash to stop 'v33333' matching.
|
||||||
v3mux := publicAPIMux.PathPrefix("/{version:(?:r0|v3)}/").Subrouter()
|
v3mux := publicAPIMux.PathPrefix("/{version:(?:r0|v3)}/").Subrouter()
|
||||||
|
|
||||||
unstableMux := publicAPIMux.PathPrefix("/unstable").Subrouter()
|
unstableMux := publicAPIMux.PathPrefix("/unstable").Subrouter()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue