2017-06-01 10:14:55 +02:00
|
|
|
function SettingsViewModel(data) {
|
|
|
|
this.TemplatesURL = data.TemplatesURL;
|
|
|
|
this.LogoURL = data.LogoURL;
|
|
|
|
this.BlackListedLabels = data.BlackListedLabels;
|
2017-11-26 10:05:03 +01:00
|
|
|
this.DisplayDonationHeader = data.DisplayDonationHeader;
|
2017-06-01 10:14:55 +02:00
|
|
|
this.DisplayExternalContributors = data.DisplayExternalContributors;
|
2017-08-10 10:35:23 +02:00
|
|
|
this.AuthenticationMethod = data.AuthenticationMethod;
|
|
|
|
this.LDAPSettings = data.LDAPSettings;
|
2017-09-26 05:36:51 +02:00
|
|
|
this.AllowBindMountsForRegularUsers = data.AllowBindMountsForRegularUsers;
|
2017-09-27 09:26:04 +02:00
|
|
|
this.AllowPrivilegedModeForRegularUsers = data.AllowPrivilegedModeForRegularUsers;
|
2017-06-01 10:14:55 +02:00
|
|
|
}
|