feat: write REST API endpoint to create step

This commit is contained in:
Ali BARIN
2024-09-06 17:30:10 +00:00
parent 1ce31eefc6
commit 813646e392
8 changed files with 270 additions and 0 deletions

View File

@@ -82,6 +82,8 @@ class Step extends Base {
});
get webhookUrl() {
if (!this.webhookPath) return null;
return new URL(this.webhookPath, appConfig.webhookUrl).toString();
}