Remove Interfaces Apply

This commit is contained in:
Samuel Lorch 2023-04-02 02:01:15 +02:00
parent e02f5a79f0
commit 5a15479c92

View file

@ -40,15 +40,6 @@ async function load(){
loading = false
}
async function apply(){
let res = await apiCall("Network.ApplyInterfaces", {});
if (res.Error === null) {
console.debug("apply log", res.Data.Log);
} else {
console.debug("error", res);
}
}
async function deleteInterface(){
let res = await apiCall("Network.DeleteInterface", {name: displayData[selection[0]].name});
if (res.Error === null) {