added in new crud apis made

This commit is contained in:
ryanwong
2024-11-16 08:52:13 -05:00
parent b9d1173965
commit 21d2a9c45e
3 changed files with 289 additions and 55 deletions
+3 -3
View File
@@ -30,11 +30,11 @@ interface Role {
interface Route {
id: string;
name: string;
url: string;
method: string;
url: string;
flowData?: {
nodes: Node[];
edges: Edge[];
nodes: any[];
edges: any[];
};
}