feat(mail): new option to force default identity

Users can now force the default identity to always be used when replying
or forwarding a message.
This commit is contained in:
Francis Lachapelle
2021-01-14 15:13:27 -05:00
parent 2826c83fc5
commit fc4f5d2161
12 changed files with 77 additions and 30 deletions
@@ -74,6 +74,10 @@
}
};
this.hasDefaultIdentity = function() {
return _.findIndex(this.account.identities, function(identity) { return !!identity.isDefault; }) >= 0;
};
this.setDefaultIdentity = function ($event, $index) {
_.forEach(this.account.identities, function(identity, i) {
if (i == $index)