mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-16 14:50:52 +01:00
Implement version endpoint (#262)
This commit is contained in:
parent
42f264119f
commit
b2f6f89496
2 changed files with 40 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
||||||
|
// Copyright 2017 New Vector Ltd
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package readers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/matrix-org/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
type version struct {
|
||||||
|
Server server `json:"server"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type server struct {
|
||||||
|
Version string `json:"version"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Version returns the server version
|
||||||
|
func Version() util.JSONResponse {
|
||||||
|
return util.JSONResponse{Code: 200, JSON: &version{server{"dev", "Dendrite"}}}
|
||||||
|
}
|
|
@ -106,4 +106,11 @@ func Setup(
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
)).Methods("GET")
|
)).Methods("GET")
|
||||||
|
|
||||||
|
v1fedmux.Handle("/version", common.MakeAPI(
|
||||||
|
"federation_version",
|
||||||
|
func(httpReq *http.Request) util.JSONResponse {
|
||||||
|
return readers.Version()
|
||||||
|
},
|
||||||
|
)).Methods("GET")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue