mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
Fixed missing identity section (Closes #456)
This commit is contained in:
parent
5c00815d31
commit
7807138b7b
6 changed files with 95 additions and 91 deletions
|
|
@ -14,6 +14,7 @@
|
|||
AccountStore = require('Stores/User/Account'),
|
||||
IdentityStore = require('Stores/User/Identity'),
|
||||
|
||||
Settings = require('Storage/Settings'),
|
||||
Remote = require('Storage/User/Remote')
|
||||
;
|
||||
|
||||
|
|
@ -22,6 +23,9 @@
|
|||
*/
|
||||
function AccountsUserSettings()
|
||||
{
|
||||
this.allowAdditionalAccount = Settings.capa(Enums.Capa.AdditionalAccounts);
|
||||
this.allowIdentities = true;
|
||||
|
||||
this.accounts = AccountStore.accounts;
|
||||
this.identities = IdentityStore.identities;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue