1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Merge branch 'master' of https://github.com/Fabio286/antares into pr/toriphes/129

This commit is contained in:
2022-02-16 09:14:46 +01:00
parent d25c62b4da
commit 328ab61757
102 changed files with 3499 additions and 563 deletions

View File

@ -17,4 +17,8 @@ export default class {
static createScheduler (params) {
return ipcRenderer.invoke('create-scheduler', params);
}
static toggleScheduler (params) {
return ipcRenderer.invoke('toggle-scheduler', params);
}
}

View File

@ -46,6 +46,22 @@ export default class {
return ipcRenderer.invoke('kill-process', params);
}
static killTabQuery (params) {
return ipcRenderer.invoke('kill-tab-query', params);
}
static commitTab (params) {
return ipcRenderer.invoke('commit-tab', params);
}
static rollbackTab (params) {
return ipcRenderer.invoke('rollback-tab', params);
}
static destroyConnectionToCommit (params) {
return ipcRenderer.invoke('destroy-connection-to-commit', params);
}
static useSchema (params) {
return ipcRenderer.invoke('use-schema', params);
}

View File

@ -17,4 +17,8 @@ export default class {
static createTrigger (params) {
return ipcRenderer.invoke('create-trigger', params);
}
static toggleTrigger (params) {
return ipcRenderer.invoke('toggle-trigger', params);
}
}