[pmg-devel] [PATCH pmg-gui 1/2] TLSDomains: rename domain to destination
Stoiko Ivanov
s.ivanov at proxmox.com
Wed Mar 4 10:31:09 CET 2020
in order to stay consistent with the change in pmg-api
Signed-off-by: Stoiko Ivanov <s.ivanov at proxmox.com>
---
js/MailProxyTLSDomains.js | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/js/MailProxyTLSDomains.js b/js/MailProxyTLSDomains.js
index 757057d..4fa082c 100644
--- a/js/MailProxyTLSDomains.js
+++ b/js/MailProxyTLSDomains.js
@@ -1,14 +1,14 @@
/*global Proxmox*/
Ext.define('pmg-tls-policy', {
extend: 'Ext.data.Model',
- fields: [ 'domain', 'policy' ],
- idProperty: 'domain',
+ fields: [ 'destination', 'policy' ],
+ idProperty: 'destination',
proxy: {
type: 'proxmox',
url: '/api2/json/config/tlspolicy'
},
sorters: {
- property: 'domain',
+ property: 'destination',
order: 'DESC'
}
});
@@ -22,16 +22,16 @@ Ext.define('PMG.TLSDomainEdit', {
initComponent : function() {
var me = this;
- var isCreate = ! Ext.isDefined(me.domain);
+ var isCreate = ! Ext.isDefined(me.destination);
- var url = '/api2/extjs/config/tlspolicy' + (isCreate ? '' : '/' + me.domain);
+ var url = '/api2/extjs/config/tlspolicy' + (isCreate ? '' : '/' + me.destination);
var method = isCreate ? 'POST' : 'PUT';
var text = isCreate ? 'Create' : 'Edit';
var items = [
{
xtype: isCreate ? 'proxmoxtextfield' : 'displayfield',
- name: 'domain',
+ name: 'destination',
fieldLabel: gettext('Domain')
},
{
@@ -77,7 +77,7 @@ Ext.define('PMG.MailProxyTLSDomains', {
header: gettext('Domain'),
width: 200,
sortable: true,
- dataIndex: 'domain'
+ dataIndex: 'destination'
},
{
header: gettext('Policy'),
@@ -110,7 +110,7 @@ Ext.define('PMG.MailProxyTLSDomains', {
}
var win = Ext.createWidget('pmgTLSDomainEdit', {
- domain: rec.data.domain
+ destination: rec.data.destination
});
win.load();
--
2.20.1
More information about the pmg-devel
mailing list