mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 11:23:50 +00:00
feat: send http
This commit is contained in:
committed by
Carlos Valente
parent
8b84963e17
commit
ab4dd300ca
@@ -80,6 +80,6 @@ export function deleteBlueprint(id: string): Promise<void> {
|
||||
* HTTP request to test automation output
|
||||
* The return is irrelevant as we care for the resolution of the promise
|
||||
*/
|
||||
export async function testOutput(output: AutomationOutput): Promise<void> {
|
||||
return axios.post(automationsPath, output);
|
||||
export function testOutput(output: AutomationOutput): Promise<void> {
|
||||
return axios.post(`${automationsPath}/test`, output);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user