diff options
author | Abyss777 <abyss@fox5.ru> | 2016-11-30 16:12:16 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-11-30 16:12:16 +0500 |
commit | fb0c5989ba2f24a9f7311d94e8a283a3fa4f4c9f (patch) | |
tree | b093fbcf8672b6106632cd9ac841f43a1e6942b6 | |
parent | 1ffe251cbc09e2199c936d68f5c1f82363436da1 (diff) | |
download | trackermap-web-fb0c5989ba2f24a9f7311d94e8a283a3fa4f4c9f.tar.gz trackermap-web-fb0c5989ba2f24a9f7311d94e8a283a3fa4f4c9f.tar.bz2 trackermap-web-fb0c5989ba2f24a9f7311d94e8a283a3fa4f4c9f.zip |
Add Test Mail button to Account dialog.
-rw-r--r-- | web/app/view/SettingsMenuController.js | 1 | ||||
-rw-r--r-- | web/app/view/UserDialog.js | 8 | ||||
-rw-r--r-- | web/app/view/UserDialogController.js | 10 | ||||
-rw-r--r-- | web/l10n/en.json | 1 |
4 files changed, 20 insertions, 0 deletions
diff --git a/web/app/view/SettingsMenuController.js b/web/app/view/SettingsMenuController.js index 0ec2a781..2b4b9209 100644 --- a/web/app/view/SettingsMenuController.js +++ b/web/app/view/SettingsMenuController.js @@ -53,6 +53,7 @@ Ext.define('Traccar.view.SettingsMenuController', { onUserClick: function () { var dialog = Ext.create('Traccar.view.UserDialog'); dialog.down('form').loadRecord(Traccar.app.getUser()); + dialog.lookupReference('testMailButton').setHidden(false); dialog.show(); }, diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index 52ec933c..dfe1a7c5 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -155,6 +155,14 @@ Ext.define('Traccar.view.UserDialog', { tooltip: Strings.sharedGetMapState, tooltipType: 'title' }, { + glyph: 'xf003@FontAwesome', + minWidth: 0, + handler: 'testMail', + hidden: true, + reference: 'testMailButton', + tooltip: Strings.sharedTestMail, + tooltipType: 'title' + }, { xtype: 'tbfill' }, { glyph: 'xf00c@FontAwesome', diff --git a/web/app/view/UserDialogController.js b/web/app/view/UserDialogController.js index 0f1c022b..f07031e3 100644 --- a/web/app/view/UserDialogController.js +++ b/web/app/view/UserDialogController.js @@ -42,6 +42,16 @@ Ext.define('Traccar.view.UserDialogController', { this.lookupReference('tokenField').setValue(newToken); }, + testMail: function () { + Ext.Ajax.request({ + url: 'api/users/notifications/test', + method: 'POST', + failure: function (response) { + Traccar.app.showError(response); + } + }); + }, + onSaveClick: function (button) { var dialog, record, store; dialog = button.up('window').down('form'); diff --git a/web/l10n/en.json b/web/l10n/en.json index 2abd6ff5..3732c1c2 100644 --- a/web/l10n/en.json +++ b/web/l10n/en.json @@ -40,6 +40,7 @@ "sharedAlias": "Alias", "sharedDeviceDistance": "Device Distance", "sharedDevice": "Device", + "sharedTestMail": "Send Test Email", "errorTitle": "Error", "errorUnknown": "Unknown error", "errorConnection": "Connection error", |