I understand that each flow node have six (6) REST API methods. But i don't understand about /activate_next/ and /undo/. When i try both of the methods i got an error Permission Denied.
This is my example flow node:
create_file = flow.Start(
views.CreateProcessView
).Permission(
auto_create=True
).Next(this.check_new_file)
check_new_file = (
flow.View(
views.UpdateProcessView, fields=["file_name", "levelling_class", "route"],
task_description="Check File")
.Permission(auto_create=True)
.Next(this.verify_new_file)
)
Thank you