feat: add ability to select an outcome in any block triggers

This commit is contained in:
Mohamed Marrouchi
2025-03-03 09:55:23 +01:00
parent 7e48eb6067
commit 34c299337d
11 changed files with 228 additions and 29 deletions

View File

@@ -14,3 +14,7 @@ export const slugify = (str: string) => {
.replace(/\s+/g, "-")
.replace(/-+/g, "_");
};
export const getNamespace = (extensionName: string) => {
return extensionName.replaceAll("-", "_");
};