Merge pull request #1120 from krishnasrinivas/version-check

UI: implement rpc call to return UI version
This commit is contained in:
Harshavardhana
2016-02-11 11:07:57 -08:00
2 changed files with 9 additions and 0 deletions

View File

@@ -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) {