deploy機能実装

This commit is contained in:
2023-10-16 17:13:14 +09:00
parent b54c0f8022
commit 178cf33949
5 changed files with 55 additions and 7 deletions

View File

@@ -96,7 +96,16 @@ export const useFlowEditorStore = defineStore("flowEditor",{
}else{
return await flowCtrl.UpdateFlow(jsonData);
}
}
},
/**
* デプロイする
*/
async deploy():Promise<boolean>{
if(this.appInfo===undefined){
return false;
}
return await flowCtrl.depoly(this.appInfo?.appId);
}
}
});