Skip to content

Commit

Permalink
feat: Adds the triggers field in the flow listing of the flows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro-Meireles committed Aug 12, 2022
1 parent 1459338 commit 64657b2
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 6 deletions.
72 changes: 67 additions & 5 deletions python/weni/protobuf/flows/flow_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion src/weni/protobuf/flows/flow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ message FlowListRequest {
string org_uuid = 2;
}

message Trigger {
string keyword = 1;
string trigger_type = 2;
int32 id = 3;
}

message Flow {
string uuid = 1;
string name = 2;
}
repeated Trigger triggers = 3;
}

0 comments on commit 64657b2

Please sign in to comment.