view gpp/messages/tasks.py @ 542:008b21c082b2

Updated requirements.txt file after updating to latest Haystack.
author Brian Neal <bgneal@gmail.com>
date Tue, 10 Jan 2012 21:14:10 -0600
parents 5171a5e9353b
children
line wrap: on
line source
"""
Celery tasks for the messages application.

"""
from celery.task import task


@task
def purge_messages():
    """
    Task to purge messages that have been deleted by both sender & receiver.

    """
    from messages.management.commands.purge_messages import Command

    command = Command()
    command.execute()