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