Knowing task
instance is there a way to get the url
of it? For example in the cookbook: https://github.com/viewflow/cookbook/blob/master/helloworld/demo/helloworld/flows.py - how do I get the url of assign
task of approve
flow_task
?
I know there is flow_task.get_task_url(task, url_type='guess', namespace='', **kwargs)
, but the point is that from what I can see the namespace
is usually fetched from self.request.resolver_match.namespace
. That's not ideal - what if we are in other part of the app and we simply want to provide links to the tasks directly?
Same as with django reverse you need to pass a namespace to get an URL. In case of build-in viewflow frontend the namespace is viewflow:[app_label]:[flow_label]
ex: "viewflow:helloworld:helloworld"