pki.signals =========== .. py:module:: pki.signals .. autoapi-nested-parse:: Django signals for PKI models. Package Contents ---------------- .. py:function:: schedule_next_crl_after_generation(sender, instance, *, created, **kwargs) Schedule the next CRL generation after a CRL is created. :param sender: The model class. :param instance: The CrlModel instance. :param created: Whether the instance was created. :param \*\*kwargs: Additional keyword arguments. .. py:function:: schedule_crl_on_cycle_enable(sender, instance, *, created, update_fields, **kwargs) Schedule CRL generation when CRL cycle is enabled on a CA. :param sender: The model class. :param instance: The CaModel instance. :param created: Whether the instance was created. :param update_fields: The fields that were updated. :param \*\*kwargs: Additional keyword arguments. .. py:function:: schedule_crl_after_revocation(sender, instance, *, created, **kwargs) Schedule CRL generation after a certificate is revoked. :param sender: The model class. :param instance: The RevokedCertificateModel instance. :param created: Whether the instance was created. :param \*\*kwargs: Additional keyword arguments.