pull/6257/head
jacobtoppm 2020-02-27 12:12:06 +00:00 zatwierdzone przez Matt Westcott
rodzic 16966b195b
commit dde1507da1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -252,7 +252,7 @@ Next, you need to instantiate the notifier, and connect it to the ``task_submitt
task_submitted.connect(user_approval_task_submission_email_notifier, dispatch_uid='user_approval_task_submitted_email_notification')
``register_signal_handlers()`` should then be run on loading the app: for example, by adding it to the ``ready()`` method in your ``AppConfig``
(and making sure you set this config is set as ``default_app_config`` in ``<project>/__init__.py``).
(and making sure this config is set as ``default_app_config`` in ``<project>/__init__.py``).
.. code-block:: python