13 lines
289 B
Python
13 lines
289 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
|
|
|
|
def launch_workflow(sender, instance, created, **kwargs):
|
|
Workflow = apps.get_model(
|
|
app_label='document_states', model_name='Workflow'
|
|
)
|
|
|
|
if created:
|
|
Workflow.objects.launch_for(instance)
|