Move apiOptionsGetFull implementation into Backend

This commit is contained in:
toasted-nutbread 2019-12-09 21:08:11 -05:00
parent 4922d3433d
commit d6fe5c3e46
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ async function apiOptionsSet(changedOptions, optionsContext, source) {
}
function apiOptionsGetFull() {
return utilBackend().getFullOptions();
return utilBackend()._onApiOptionsGetFull();
}
async function apiOptionsSave(source) {

View File

@ -191,7 +191,7 @@ class Backend {
}
_onApiOptionsGetFull() {
return apiOptionsGetFull();
return this.getFullOptions();
}
_onApiOptionsSet({changedOptions, optionsContext, source}) {