Beispiel #1
0
def send_organizer_watcher_update(sender, created=False, instance=None, **kwargs):
    """
    Send organizers and watchers of a given lot updates.
    """
    if instance and created:
        notify_organizers_and_watchers(instance)

        if isinstance(instance, Note):
            notify_managers(instance)
Beispiel #2
0
    def save(self, force_insert=False, force_update=False, commit=True):
        is_creating = False
        if not self.instance.id:
            is_creating = True

        organizer = super(self.__class__, self).save()
        if is_creating:
            notify_managers(organizer)
            notify_organizers_and_watchers(organizer)
        return organizer