Warning! Breaking change!

Removed "additional Login field" on login page (Security reason) (Closes #206)
Added "custom-login-mapping" plugin
This commit is contained in:
RainLoop Team 2014-06-25 20:36:46 +04:00
parent 9643c621f1
commit 81e25b4235
24 changed files with 246 additions and 303 deletions

View file

@ -91,7 +91,6 @@ AbstractData.prototype.populateDataOnStart = function()
this.determineUserLanguage(!!RL.settingsGet('DetermineUserLanguage'));
this.capaThemes(RL.capa(Enums.Capa.Themes));
this.allowCustomLogin(!!RL.settingsGet('AllowCustomLogin'));
this.allowLanguagesOnLogin(!!RL.settingsGet('AllowLanguagesOnLogin'));
this.allowLanguagesOnSettings(!!RL.settingsGet('AllowLanguagesOnSettings'));

View file

@ -30,7 +30,6 @@ function WebMailDataStorage()
;
this.devEmail = '';
this.devLogin = '';
this.devPassword = '';
this.accountEmail = ko.observable('');
@ -488,7 +487,6 @@ WebMailDataStorage.prototype.populateDataOnStart = function()
this.remoteSuggestions = !!RL.settingsGet('RemoteSuggestions');
this.devEmail = RL.settingsGet('DevEmail');
this.devLogin = RL.settingsGet('DevLogin');
this.devPassword = RL.settingsGet('DevPassword');
};