Removed isEmailEnabledSynchronous and switched the email disabled warnings to use ConfigStore
Этот коммит содержится в:
@@ -2,6 +2,7 @@
|
||||
// See License.txt for license information.
|
||||
|
||||
var utils = require('../utils/utils.jsx');
|
||||
var ConfigStore = require('../stores/config_store.jsx');
|
||||
var Client = require('../utils/client.jsx');
|
||||
var UserStore = require('../stores/user_store.jsx');
|
||||
var ConfirmModal = require('./confirm_modal.jsx');
|
||||
@@ -152,7 +153,7 @@ module.exports = React.createClass({
|
||||
emailErrors: {},
|
||||
firstNameErrors: {},
|
||||
lastNameErrors: {},
|
||||
emailEnabled: Client.isEmailEnabledSynchronous()
|
||||
emailEnabled: !ConfigStore.getSettingAsBoolean('ByPassEmail', false)
|
||||
};
|
||||
},
|
||||
render: function() {
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
// See License.txt for license information.
|
||||
|
||||
var utils = require('../utils/utils.jsx');
|
||||
var ConfigStore = require('../stores/config_store.jsx');
|
||||
var client = require('../utils/client.jsx');
|
||||
var UserStore = require('../stores/user_store.jsx');
|
||||
var BrowserStore = require('../stores/browser_store.jsx');
|
||||
@@ -500,7 +501,7 @@ SendInivtesPage = React.createClass({
|
||||
},
|
||||
getInitialState: function() {
|
||||
return {
|
||||
emailEnabled: client.isEmailEnabledSynchronous()
|
||||
emailEnabled: !ConfigStore.getSettingAsBoolean('ByPassEmail', false)
|
||||
};
|
||||
},
|
||||
render: function() {
|
||||
|
||||
@@ -864,24 +864,3 @@ function getConfig(success, error) {
|
||||
});
|
||||
};
|
||||
module.exports.getConfig = getConfig;
|
||||
|
||||
module.exports.isEmailEnabledSynchronous = function() {
|
||||
var enabled = false;
|
||||
|
||||
$.ajax({
|
||||
async: false,
|
||||
url: '/api/v1/config/get/bypass_email',
|
||||
dataType: 'json',
|
||||
type: 'GET',
|
||||
success: function(value) {
|
||||
enabled = !value;
|
||||
},
|
||||
error: function(xhr, status, err) {
|
||||
if (status !== '200') {
|
||||
handleError('isEmailEnabled', xhr, status, err);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return enabled;
|
||||
};
|
||||
|
||||
Ссылка в новой задаче
Block a user