summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/dns.js
diff options
context:
space:
mode:
authorPavel Vomacka <pvomacka@redhat.com>2016-06-22 18:13:27 +0200
committerPetr Vobornik <pvoborni@redhat.com>2016-06-29 16:33:42 +0200
commit31a13c9e9849eca794aa7908bc252185c4b36678 (patch)
tree784848c4f2726f559a0f1668b2fc8a58de350b5f /install/ui/src/freeipa/dns.js
parent3c40d3aa9e3d431be1e625aa91cdcbeffd0d1271 (diff)
downloadfreeipa-31a13c9e9849eca794aa7908bc252185c4b36678.tar.gz
freeipa-31a13c9e9849eca794aa7908bc252185c4b36678.tar.xz
freeipa-31a13c9e9849eca794aa7908bc252185c4b36678.zip
Add button for dns_update_system_records command
Part of: https://fedorahosted.org/freeipa/ticket/5905 Reviewed-By: Petr Vobornik <pvoborni@redhat.com> Reviewed-By: Petr Spacek <pspacek@redhat.com>
Diffstat (limited to 'install/ui/src/freeipa/dns.js')
-rw-r--r--install/ui/src/freeipa/dns.js44
1 files changed, 43 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/dns.js b/install/ui/src/freeipa/dns.js
index c086251a8..2d424aeae 100644
--- a/install/ui/src/freeipa/dns.js
+++ b/install/ui/src/freeipa/dns.js
@@ -100,7 +100,9 @@ return {
]
}
],
- needs_update: true
+ needs_update: true,
+ actions: [ 'update_dns_records' ],
+ header_actions: [ 'update_dns_records' ]
}
]
};};
@@ -554,6 +556,45 @@ var make_dnsserver_spec = function() {
};
+IPA.dns.update_dns_records_action = function(spec) {
+
+ spec = spec || {};
+
+ spec.name = spec.name || 'update_dns_records';
+ spec.label = spec.label || '@i18n:objects.dnsconfig.update_dns';
+
+ var that = IPA.action(spec);
+
+ that.execute_action = function() {
+ var spec = {
+ title: '@i18n:objects.dnsconfig.update_dns',
+ message: '@i18n:objects.dnsconfig.update_dns_dialog_msg',
+ ok_label: '@i18n:buttons.update'
+ };
+
+ that.dialog = IPA.confirm_dialog(spec);
+
+ that.dialog.on_ok = function() {
+
+ var command = rpc.command({
+ entity: 'dns',
+ method: 'update_system_records',
+ on_success: function(data) {
+ var status = data.result.value;
+ if (status) IPA.notify_success(
+ '@i18n:objects.dnsconfig.updated_dns');
+ }
+ });
+
+ command.execute();
+ };
+
+ that.dialog.open();
+ };
+
+ return that;
+};
+
IPA.dnszone_details_facet = function(spec, no_init) {
spec = spec || {};
@@ -2617,6 +2658,7 @@ exp.register = function() {
a.register('dns_add_permission', IPA.dns.add_permission_action);
a.register('dns_remove_permission', IPA.dns.remove_permission_action);
+ a.register('update_dns_records', IPA.dns.update_dns_records_action);
};
phases.on('registration', exp.register);