Removed left overs from former cura integration
This commit is contained in:
parent
b4068f36e1
commit
f4df354cd0
2 changed files with 0 additions and 18 deletions
|
|
@ -131,11 +131,6 @@ default_settings = {
|
|||
"localNetworks": ["127.0.0.0/8"],
|
||||
"autologinAs": None
|
||||
},
|
||||
"cura": {
|
||||
"enabled": False,
|
||||
"path": "/default/path/to/cura",
|
||||
"config": "/default/path/to/your/cura/config.ini"
|
||||
},
|
||||
"slicing": {
|
||||
"enabled": True,
|
||||
"defaultSlicer": "cura",
|
||||
|
|
|
|||
|
|
@ -84,10 +84,6 @@ function SettingsViewModel(loginStateViewModel, usersViewModel, printerProfilesV
|
|||
self.folder_logs = ko.observable(undefined);
|
||||
self.folder_watched = ko.observable(undefined);
|
||||
|
||||
self.cura_enabled = ko.observable(undefined);
|
||||
self.cura_path = ko.observable(undefined);
|
||||
self.cura_config = ko.observable(undefined);
|
||||
|
||||
self.temperature_profiles = ko.observableArray(undefined);
|
||||
|
||||
self.system_actions = ko.observableArray([]);
|
||||
|
|
@ -180,10 +176,6 @@ function SettingsViewModel(loginStateViewModel, usersViewModel, printerProfilesV
|
|||
self.folder_logs(response.folder.logs);
|
||||
self.folder_watched(response.folder.watched);
|
||||
|
||||
self.cura_enabled(response.cura.enabled);
|
||||
self.cura_path(response.cura.path);
|
||||
self.cura_config(response.cura.config);
|
||||
|
||||
self.temperature_profiles(response.temperature.profiles);
|
||||
|
||||
self.system_actions(response.system.actions);
|
||||
|
|
@ -251,11 +243,6 @@ function SettingsViewModel(loginStateViewModel, usersViewModel, printerProfilesV
|
|||
"system": {
|
||||
"actions": self.system_actions()
|
||||
},
|
||||
"cura": {
|
||||
"enabled": self.cura_enabled(),
|
||||
"path": self.cura_path(),
|
||||
"config": self.cura_config()
|
||||
},
|
||||
"terminalFilters": self.terminalFilters()
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue