agent per site/client permissions initial, uri updates, comp api rework

This commit is contained in:
sadnub
2021-10-09 22:52:56 -04:00
parent e6945acb1c
commit 1b5cf0af89
85 changed files with 6293 additions and 4782 deletions

View File

@@ -92,14 +92,13 @@ export default {
async function runTestScript() {
loading.value = true;
const data = {
agent: agent.value,
code: props.script.code,
timeout: timeout.value,
args: args.value,
shell: props.script.shell,
};
ret.value = await testScript(data);
ret.value = await testScript(agent.value, data);
loading.value = false;
}