Esempio n. 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)
        notify_facilitators(instance)
Esempio n. 2
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)
        notify_facilitators(instance)
Esempio n. 3
0
def create_organizer(sender, instance, **kwargs):
    """
    Once an Organizer is moderated and approved, make it official and let
    everyone know.
    """
    if not instance.is_approved:
        return

    add_action(sender, created=True, instance=instance, **kwargs)
    notify_organizers_and_watchers(instance)
    notify_facilitators(instance)
Esempio n. 4
0
def create_organizer(sender, instance, **kwargs):
    """
    Once an Organizer is moderated and approved, make it official and let
    everyone know.
    """
    if not instance.is_approved:
        return

    add_action(sender, created=True, instance=instance, **kwargs)
    notify_organizers_and_watchers(instance)
    notify_facilitators(instance)