summaryrefslogtreecommitdiffstats
path: root/install/ui/field.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-09-05 09:27:21 +0200
committerRob Crittenden <rcritten@redhat.com>2012-09-06 19:18:22 -0400
commita4ab88445c122837597d88fe68ce5b944f5324bb (patch)
treec3dd10210716fc4d7ef3e4b7e841747c4f181764 /install/ui/field.js
parent46ad724301e301d1bc96216b8873e704a37d35e3 (diff)
downloadfreeipa.git-a4ab88445c122837597d88fe68ce5b944f5324bb.tar.gz
freeipa.git-a4ab88445c122837597d88fe68ce5b944f5324bb.tar.xz
freeipa.git-a4ab88445c122837597d88fe68ce5b944f5324bb.zip
Reflect API change of SSH store in Web UI
Format of ipasshpubkey in users and hosts changed from BYTES to STR. Web UI no longer gets the value as base64 encoded string in a object. Label was changed to reflect that the key don't have to be plain base64 encoded blob. https://fedorahosted.org/freeipa/ticket/2989
Diffstat (limited to 'install/ui/field.js')
-rw-r--r--install/ui/field.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/field.js b/install/ui/field.js
index 5aa24c70..42da6f92 100644
--- a/install/ui/field.js
+++ b/install/ui/field.js
@@ -659,7 +659,7 @@ IPA.sshkeys_field = function(spec) {
if (keys[i] === '') continue;
var value = {
- key: keys[i].__base64__,
+ key: keys[i],
fingerprint: fingerprints[i]
};
values.push(value);