mirror of
https://github.com/portainer/portainer.git
synced 2025-07-31 03:09:44 +02:00
11 lines
550 B
JavaScript
11 lines
550 B
JavaScript
function SettingsViewModel(data) {
|
|
this.TemplatesURL = data.TemplatesURL;
|
|
this.LogoURL = data.LogoURL;
|
|
this.BlackListedLabels = data.BlackListedLabels;
|
|
this.DisplayDonationHeader = data.DisplayDonationHeader;
|
|
this.DisplayExternalContributors = data.DisplayExternalContributors;
|
|
this.AuthenticationMethod = data.AuthenticationMethod;
|
|
this.LDAPSettings = data.LDAPSettings;
|
|
this.AllowBindMountsForRegularUsers = data.AllowBindMountsForRegularUsers;
|
|
this.AllowPrivilegedModeForRegularUsers = data.AllowPrivilegedModeForRegularUsers;
|
|
}
|