mirror of https://github.com/portainer/portainer
7 lines
231 B
JavaScript
7 lines
231 B
JavaScript
|
function SettingsViewModel(data) {
|
||
|
this.TemplatesURL = data.TemplatesURL;
|
||
|
this.LogoURL = data.LogoURL;
|
||
|
this.BlackListedLabels = data.BlackListedLabels;
|
||
|
this.DisplayExternalContributors = data.DisplayExternalContributors;
|
||
|
}
|