mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-14 10:30:54 +03:00
Merge remote-tracking branch 'origin/develop' into dbkr/scalar
This commit is contained in:
commit
ffe892b4b1
3 changed files with 45 additions and 4 deletions
|
@ -335,8 +335,14 @@ module.exports = {
|
||||||
input = input.replace(/\s+$/, "");
|
input = input.replace(/\s+$/, "");
|
||||||
if (input[0] === "/" && input[1] !== "/") {
|
if (input[0] === "/" && input[1] !== "/") {
|
||||||
var bits = input.match(/^(\S+?)( +(.*))?$/);
|
var bits = input.match(/^(\S+?)( +(.*))?$/);
|
||||||
var cmd = bits[1].substring(1).toLowerCase();
|
var cmd, args;
|
||||||
var args = bits[3];
|
if (bits) {
|
||||||
|
cmd = bits[1].substring(1).toLowerCase();
|
||||||
|
args = bits[3];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
cmd = input;
|
||||||
|
}
|
||||||
if (cmd === "me") return null;
|
if (cmd === "me") return null;
|
||||||
if (aliases[cmd]) {
|
if (aliases[cmd]) {
|
||||||
cmd = aliases[cmd];
|
cmd = aliases[cmd];
|
||||||
|
|
|
@ -77,4 +77,39 @@ module.exports = {
|
||||||
|
|
||||||
return cli.setPassword(authDict, new_password);
|
return cli.setPassword(authDict, new_password);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the email pusher (pusher of type 'email') for a given
|
||||||
|
* email address. Email pushers all have the same app ID, so since
|
||||||
|
* pushers are unique over (app ID, pushkey), there will be at most
|
||||||
|
* one such pusher.
|
||||||
|
*/
|
||||||
|
getEmailPusher: function(pushers, address) {
|
||||||
|
if (pushers === undefined) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
for (var i = 0; i < pushers.length; ++i) {
|
||||||
|
if (pushers[i].kind == 'email' && pushers[i].pushkey == address) {
|
||||||
|
return pushers[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
},
|
||||||
|
|
||||||
|
hasEmailPusher: function(pushers, address) {
|
||||||
|
return this.getEmailPusher(pushers, address) !== undefined;
|
||||||
|
},
|
||||||
|
|
||||||
|
addEmailPusher: function(address) {
|
||||||
|
return MatrixClientPeg.get().setPusher({
|
||||||
|
kind: 'email',
|
||||||
|
app_id: "m.email",
|
||||||
|
pushkey: address,
|
||||||
|
app_display_name: 'Email Notifications',
|
||||||
|
device_display_name: address,
|
||||||
|
lang: navigator.language,
|
||||||
|
data: {},
|
||||||
|
append: true, // We always append for email pushers since we don't want to stop other accounts notifying to the same email address
|
||||||
|
});
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -328,12 +328,12 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
var notification_area;
|
var notification_area;
|
||||||
if (!MatrixClientPeg.get().isGuest()) {
|
if (!MatrixClientPeg.get().isGuest() && this.state.threepids !== undefined) {
|
||||||
notification_area = (<div>
|
notification_area = (<div>
|
||||||
<h3>Notifications</h3>
|
<h3>Notifications</h3>
|
||||||
|
|
||||||
<div className="mx_UserSettings_section">
|
<div className="mx_UserSettings_section">
|
||||||
<Notifications/>
|
<Notifications threepids={this.state.threepids} />
|
||||||
</div>
|
</div>
|
||||||
</div>);
|
</div>);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue