summaryrefslogtreecommitdiffstats
path: root/install/ui/add.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-09-18 17:12:59 +0200
committerRob Crittenden <rcritten@redhat.com>2012-09-17 21:24:38 -0400
commite39a109060ce8b92919c00aebd83a682a039d9b5 (patch)
tree22e9b1de47f2bba27a60fc51c7a4667967005e6a /install/ui/add.js
parent7269687822b019c209ed759ba42641586abcb2b0 (diff)
downloadfreeipa.git-e39a109060ce8b92919c00aebd83a682a039d9b5.tar.gz
freeipa.git-e39a109060ce8b92919c00aebd83a682a039d9b5.tar.xz
freeipa.git-e39a109060ce8b92919c00aebd83a682a039d9b5.zip
Show trust status in add success notification
Web UI notification of 'Add verification step after trust creation' https://fedorahosted.org/freeipa/ticket/2763
Diffstat (limited to 'install/ui/add.js')
-rw-r--r--install/ui/add.js13
1 files changed, 9 insertions, 4 deletions
diff --git a/install/ui/add.js b/install/ui/add.js
index d8558794..a5e30092 100644
--- a/install/ui/add.js
+++ b/install/ui/add.js
@@ -52,7 +52,7 @@ IPA.entity_adder_dialog = function(spec) {
var facet = IPA.current_entity.get_facet();
facet.refresh();
that.close();
- IPA.notify_success(that.get_success_message());
+ that.notify_success(data);
},
that.on_error);
}
@@ -66,7 +66,7 @@ IPA.entity_adder_dialog = function(spec) {
that.add(
function(data, text_status, xhr) {
that.added.notify();
- that.show_message(that.get_success_message());
+ that.show_message(that.get_success_message(data));
var facet = IPA.current_entity.get_facet();
facet.refresh();
that.reset();
@@ -86,7 +86,7 @@ IPA.entity_adder_dialog = function(spec) {
that.close();
var result = data.result.result;
that.show_edit_page(that.entity, result);
- IPA.notify_success(that.get_success_message());
+ that.notify_success(data);
},
that.on_error);
}
@@ -102,11 +102,15 @@ IPA.entity_adder_dialog = function(spec) {
});
};
- that.get_success_message = function() {
+ that.get_success_message = function(data) {
var message = IPA.messages.dialogs.add_confirmation;
return message.replace('${entity}', that.subject);
};
+ that.notify_success = function(data) {
+ IPA.notify_success(that.get_success_message(data));
+ };
+
function show_edit_page(entity,result) {
var pkey_name = entity.metadata.primary_key;
var pkey = result[pkey_name];
@@ -183,6 +187,7 @@ IPA.entity_adder_dialog = function(spec) {
// methods that should be invoked by subclasses
that.entity_adder_dialog_create = that.create;
that.entity_adder_dialog_create_add_command = that.create_add_command;
+ that.entity_adder_dialog_get_success_message = that.get_success_message;
init();