mirror of https://github.com/minio/minio.git
Merge pull request #1120 from krishnasrinivas/version-check
UI: implement rpc call to return UI version
This commit is contained in:
commit
f0e2edd632
|
@ -36,6 +36,9 @@ type ServerInfoArgs struct{}
|
||||||
// ListBucketsArgs - list bucket args.
|
// ListBucketsArgs - list bucket args.
|
||||||
type ListBucketsArgs struct{}
|
type ListBucketsArgs struct{}
|
||||||
|
|
||||||
|
// GenericArgs - empty struct
|
||||||
|
type GenericArgs struct{}
|
||||||
|
|
||||||
// DiskInfoRep - disk info reply.
|
// DiskInfoRep - disk info reply.
|
||||||
type DiskInfoRep struct {
|
type DiskInfoRep struct {
|
||||||
DiskInfo disk.Info `json:"diskInfo"`
|
DiskInfo disk.Info `json:"diskInfo"`
|
||||||
|
|
|
@ -51,6 +51,12 @@ func isAuthenticated(req *http.Request) bool {
|
||||||
return tokenRequest.Valid
|
return tokenRequest.Valid
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetUIVersion - get UI version
|
||||||
|
func (web WebAPI) GetUIVersion(r *http.Request, args *GenericArgs, reply *GenericRep) error {
|
||||||
|
reply.UIVersion = uiVersion
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// ServerInfo - get server info.
|
// ServerInfo - get server info.
|
||||||
func (web *WebAPI) ServerInfo(r *http.Request, args *ServerInfoArgs, reply *ServerInfoRep) error {
|
func (web *WebAPI) ServerInfo(r *http.Request, args *ServerInfoArgs, reply *ServerInfoRep) error {
|
||||||
if !isAuthenticated(r) {
|
if !isAuthenticated(r) {
|
||||||
|
|
Loading…
Reference in New Issue