webui: fix detection of RPC command

old detection did not work with the static version used for test and
demonstration purposes.

https://fedorahosted.org/freeipa/ticket/4357

Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
Petr Vobornik
2014-06-27 14:18:35 +02:00
parent e6a373e930
commit 59f66a156b
2 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -775,8 +775,8 @@ field.Adapter = declare(null, {
get_record: function(data) {
// detection if it's result or raw RPC command response
// all raw responses should contain `version` and `principal`
if (!data.version || !data.principal) {
// each RPC response should define properties as follows
if (data.id === undefined || data.result === undefined || data.error === undefined) {
return data;
}
+8 -8
View File
@@ -229,10 +229,10 @@ var get_visible_rows = function(section) {
test("Testing type target.", function() {
var data = {};
data.result = {};
data.result.result = {
type: 'hostgroup'
var data = {
id: null,
error: null,
result: { result: { type: 'hostgroup'} }
};
target_facet.load(data);
@@ -266,10 +266,10 @@ test("Testing type target.", function() {
test("Testing general target.", function() {
var data = {};
data.result = {};
data.result.result = {
extratargetfilter: 'somevalue'
var data = {
id: null,
error: null,
result: { result: { extratargetfilter: 'hostgroup'} }
};
target_facet.load(data);