mirror of
https://github.com/minio/minio.git
synced 2025-11-13 07:11:44 -05:00
Merge pull request #1120 from krishnasrinivas/version-check
UI: implement rpc call to return UI version
This commit is contained in:
@@ -51,6 +51,12 @@ func isAuthenticated(req *http.Request) bool {
|
||||
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.
|
||||
func (web *WebAPI) ServerInfo(r *http.Request, args *ServerInfoArgs, reply *ServerInfoRep) error {
|
||||
if !isAuthenticated(r) {
|
||||
|
||||
Reference in New Issue
Block a user