set email branding whenever emails are added from vector

This commit is contained in:
Matthew Hodgson 2016-06-02 13:15:13 +01:00
parent 1902b631c7
commit d976046e6a
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"default_hs_url": "https://matrix.org",
"default_hs_url": "http://127.0.0.1:8008",
"default_is_url": "https://vector.im",
"brand": "Vector",
"integrations_ui_url": "http://localhost:8081/",
"integrations_ui_url": "http://localhost:5051/",
"integrations_rest_url": "http://localhost:5050"
}

View File

@ -21,6 +21,7 @@ var sdk = require('matrix-react-sdk');
var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg');
var UserSettingsStore = require('matrix-react-sdk/lib/UserSettingsStore');
var Modal = require('matrix-react-sdk/lib/Modal');
var configJson = require("../../../../config.json");
var notifications = require('../../../notifications');
@ -116,7 +117,11 @@ module.exports = React.createClass({
onEnableEmailNotificationsChange: function(address, event) {
var emailPusherPromise;
if (event.target.checked) {
emailPusherPromise = UserSettingsStore.addEmailPusher(address);
var data = {}
if (configJson.brand) {
data['brand'] = configJson.brand;
}
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
} else {
var emailPusher = UserSettingsStore.getEmailPusher(this.state.pushers, address);
emailPusher.kind = null;